新しいiOS8アプリ拡張機能を使用して共有拡張機能を作成しようとしています。 Safariサイトの現在のURLを取得して、UILabelに表示しようとしました。十分に単純です。
Apple here https://developer.Apple.com/library/content/documentation/General/Conceptual/ExtensibilityPG/Share.html#)の公式拡張ガイドを使用して作業していました。 // Apple_ref/doc/uid/TP40014214-CH12-SW1 しかし、いくつかのことが期待どおりに機能していません。ベータ版のみであることはわかっていますが、何か間違ったことをしているだけかもしれません。
拡張機能ViewController内のsafariからURLを取得するための私のコードは次のとおりです。
-(void)viewDidAppear:(BOOL)animated{
NSExtensionContext *myExtensionContext = [self extensionContext];
NSArray *inputItems = [myExtensionContext inputItems];
NSMutableString* mutableString = [[NSMutableString alloc]init];
for(NSExtensionItem* item in inputItems){
NSMutableString* temp = [NSMutableString stringWithFormat:@"%@, %@, %lu,
%lu - ",item.attributedTitle,[item.attributedContentText string],
(unsigned long)[item.userInfo count],[item.attachments count]];
for(NSString* key in [item.userInfo allKeys]){
NSArray* array = [item.userInfo objectForKey:@"NSExtensionItemAttachmentsKey"];
[temp appendString:[NSString stringWithFormat:@" in array:%lu@",[array count]]];
}
[mutableString appendString:temp];
}
self.myLabel.text = mutableString;
}
そして、これは私の拡張機能のInfo.plistファイルの内容です。
<dict>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
<key>NSExtensionPointIdentifier</key>
<string>com.Apple.share-services</string>
<key>NSExtensionActivationRule</key>
<dict>
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
<integer>200</integer>
</dict>
</dict>
SafariでapplesiPodサポートページにアクセスして拡張機能と共有しようとすると、次の値が表示されますが、URLは表示されません。
item.attributedTitle = (null)
item.attributedContentText = "iPod - Apple Support"
item.userInfo.count = 2 (two keys: NSExtensionAttributedContentTextKey and
NSExtensionItemAttachmentsKey)
item.attachments.count = 0
辞書のオブジェクト内の配列は常に空です。
Appleサイトをシステムメールアプリと共有すると、URLがメッセージに投稿されます。拡張機能にURLがないのはなぜですか?
以下は、URLを取得する方法です。タイプ識別子がkUTTypeURLであり、ブロック引数がNSURLであることに注意してください。また、plistは私のように正しい必要があります。ドキュメントが不足していて、 Apple開発フォーラム のnumber4。(それを表示するには、登録してログインする必要があります)から助けを得ました。
コード:
NSExtensionItem *item = self.extensionContext.inputItems.firstObject;
NSItemProvider *itemProvider = item.attachments.firstObject;
if ([itemProvider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeURL]) {
[itemProvider loadItemForTypeIdentifier:(NSString *)kUTTypeURL options:nil completionHandler:^(NSURL *url, NSError *error) {
self.urlString = url.absoluteString;
}];
}
Info.plist
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<dict>
<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>
<integer>1</integer>
</dict>
<key>NSExtensionPointName</key>
<string>com.Apple.share-services</string>
<key>NSExtensionPointVersion</key>
<string>1.0</string>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.Apple.share-services</string>
<key>NSExtensionMainStoryboard</key>
<string>MainInterface</string>
</dict>
私はそれを自分で解決しました。画像の共有を試していました。
- (void)didSelectPost {
// This is called after the user selects Post. Do the upload of contentText and/or NSExtensionContext attachments.
// Inform the Host that we're done, so it un-blocks its UI. Note: Alternatively you could call super's -didSelectPost, which will similarly complete the extension context.
// Verify that we have a valid NSExtensionItem
NSExtensionItem *imageItem = [self.extensionContext.inputItems firstObject];
if(!imageItem){
return;
}
// Verify that we have a valid NSItemProvider
NSItemProvider *imageItemProvider = [[imageItem attachments] firstObject];
if(!imageItemProvider){
return;
}
// Look for an image inside the NSItemProvider
if([imageItemProvider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeImage]){
[imageItemProvider loadItemForTypeIdentifier:(NSString *)kUTTypeImage options:nil completionHandler:^(UIImage *image, NSError *error) {
if(image){
NSLog(@"image %@", image);
// do your stuff here...
}
}];
}
// this line should not be here. Cos it's called before the block finishes.
// and this is why the console log or any other task won't work inside the block
[self.extensionContext completeRequestReturningItems:nil completionHandler:nil];
}
だから私がしたのは[self.extensionContextcompleteRequestReturningItems:nil completeHandler:nil]を移動しただけです。他のタスクの終了時にブロック内。最終的な動作バージョンは次のようになります(Mavericks OS X10.9.4のXcode6ベータ5):
- (void)didSelectPost {
// This is called after the user selects Post. Do the upload of contentText and/or NSExtensionContext attachments.
// Inform the Host that we're done, so it un-blocks its UI. Note: Alternatively you could call super's -didSelectPost, which will similarly complete the extension context.
// Verify that we have a valid NSExtensionItem
NSExtensionItem *imageItem = [self.extensionContext.inputItems firstObject];
if(!imageItem){
return;
}
// Verify that we have a valid NSItemProvider
NSItemProvider *imageItemProvider = [[imageItem attachments] firstObject];
if(!imageItemProvider){
return;
}
// Look for an image inside the NSItemProvider
if([imageItemProvider hasItemConformingToTypeIdentifier:(NSString *)kUTTypeImage]){
[imageItemProvider loadItemForTypeIdentifier:(NSString *)kUTTypeImage options:nil completionHandler:^(UIImage *image, NSError *error) {
if(image){
NSLog(@"image %@", image);
// do your stuff here...
// complete and return
[self.extensionContext completeRequestReturningItems:nil completionHandler:nil];
}
}];
}
// this line should not be here. Cos it's called before the block finishes.
// and this is why the console log or any other task won't work inside the block
// [self.extensionContext completeRequestReturningItems:nil completionHandler:nil];
}
URL共有にも使えるといいですね。
拡張ビューコントローラは、NSExtensionRequestHandling
プロトコルを採用している必要があります。このプロトコルの方法の1つは次のとおりです。
- (void)beginRequestWithExtensionContext:(NSExtensionContext *)context
NSExtensionContext
を取得する前に、これが呼び出されるのを待つ必要があります。メソッド内のコンテキストをcontext
パラメーターとして提供します。
これは このドキュメント で概説されています。
他の答えはすべて複雑で不完全です。これらはSafariでのみ機能し、GoogleChromeでは機能しません。これは、Google ChromeとSafariの両方で機能します:
override func viewDidLoad() {
super.viewDidLoad()
for item in extensionContext!.inputItems {
if let attachments = item.attachments {
for itemProvider in attachments! {
itemProvider.loadItemForTypeIdentifier("public.url", options: nil, completionHandler: { (object, error) -> Void in
if object != nil {
if let url = object as? NSURL {
print(url.absoluteString) //This is your URL
}
}
})
}
}
}
}
これらの以前の回答はすべて本当に良いですが、Swiftでこの問題に遭遇し、特にNSExtensionContext
からCFString
への変換プロセスで特定のString
からURLを抽出するのは少し面倒だと感じました。 completionHandler
のloadItemForTypeIdentifier
がメインスレッドで実行されないという事実。
import MobileCoreServices
extension NSExtensionContext {
private var kTypeURL:String {
get {
return kUTTypeURL as NSString as String
}
}
func extractURL(completion: ((url:NSURL?) -> Void)?) -> Void {
var processed:Bool = false
for item in self.inputItems ?? [] {
if let item = item as? NSExtensionItem,
let attachments = item.attachments,
let provider = attachments.first as? NSItemProvider
where provider.hasItemConformingToTypeIdentifier(kTypeURL) == true {
provider.loadItemForTypeIdentifier(kTypeURL, options: nil, completionHandler: { (output, error) -> Void in
dispatch_async(dispatch_get_main_queue(), { () -> Void in
processed = true
if let url = output as? NSURL {
completion?(url: url)
}
else {
completion?(url: nil)
}
})
})
}
}
// make sure the completion block is called even if no url could be extracted
if (processed == false) {
completion?(url: nil)
}
}
}
そうすれば、UIViewController
サブクラスで次のように簡単に使用できます。
self.extensionContext?.extractURL({ (url) -> Void in
self.urlLabel.text = url?.absoluteString
println(url?.absoluteString)
})
let itemProvider = item.attachments?.first as! NSItemProvider
itemProvider.loadItemForTypeIdentifier("public.url", options: nil) { (object, error) -> Void in
println(object)
}
したがって、println: http://detail.m.tmall.com/item.htm?id=38131345289&spm=a2147.7632989.mainList.5
タイプkUTTypePropertyListの添付ファイルを探す必要があります。拡張機能の最初の拡張機能アイテムの最初の添付ファイルを使用して、次のようにします。
NSExtensionItem *extensionItem = self.extensionContext.extensionItems.firstObject;
NSItemProvider *itemProvider = self.extensionItem.attachments.firstObject;
[itemProvider loadItemForTypeIdentifier:kUTTypePropertyList options:nil
completionHandler:^(NSDictionary *item, NSError *error) {
// Unpack items from "item" in here
}];
また、DOMから必要なすべてのデータを取得するためにJavaScriptを設定する必要があります。詳細については、WWDC14の2番目の拡張セッションを参照してください。