繁体   English   中英

无法从iOS 10中的App组共享容器中获取扩展程序中的图像

[英]Not able to fetch images in extension app from App group shared container in iOS 10

在我的主机应用程序中,我正在通过以下网址解压缩成功后下载自定义表情符号图像文件夹。

NSURL* shareContainerURL =   [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.company.app.PushServiceExtn"];

用户点击emojis图标时没有任何问题,所有自定义表情符号都通过shareContainerURL显示在网格中代替键盘。

我已经创建了PushNotification服务扩展,我需要通过在推送到来时从有效负载中获取表情符号名称来显示自定义表情符号图像。 使用下面的代码。

- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
    self.contentHandler = contentHandler;
    self.bestAttemptContent = [request.content mutableCopy];

    NSDictionary* mediaAttachment = [self.bestAttemptContent.userInfo objectForKey:@"media-attachment"];
    NSString* attachType = [mediaAttachment objectForKey:@"attachType"];
    if ([attachType isEqualToString:@"emoji"]) {
        NSString* strEmojiURL = [mediaAttachment objectForKey:@"url"];
        self.bestAttemptContent.title = strEmojiURL;
        NSString* emojiName = [[strEmojiURL stringByRemovingPercentEncoding] lastPathComponent];
        NSString* strUnpresseedEmojiPath = [self getFullPath:@"emoji/Pressed"];
        NSString* strImagePath = [NSString stringWithFormat:@"%@/%@ Pressed.png",strUnpresseedEmojiPath, emojiName];
        NSURL* fileURL = [NSURL fileURLWithPath:strImagePath];
        NSData *imageData = [NSData dataWithContentsOfURL:fileURL];
        UIImage *image = [UIImage imageWithData:imageData];
        if (image) {
            NSError* error;
           // CGRect rect = CGRectMake(0,0,50,50);
           // @{UNNotificationAttachmentOptionsThumbnailClippingRectKey:(__bridge NSDictionary*)CGRectCreateDictionaryRepresentation(rect)} option dict;
            UNNotificationAttachment * attachement = [UNNotificationAttachment attachmentWithIdentifier:strImagePath.lastPathComponent URL:fileURL options:nil error:&error];

            if (error == nil) {
                self.bestAttemptContent.attachments = @[attachement];
            }
        }
    }


    self.contentHandler(self.bestAttemptContent);
}
- (NSString *)getFullPath:(NSString *)file {

    NSURL* shareContainerURL =   [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:@"group.company.app.PushServiceExtn"];
    return [shareContainerURL.path stringByAppendingPathComponent: file];

} 

我总是得到有效的网址,但第二次我得到的图像为零,但每次拍摄的图像都是第一次。 无法得到根本原因。 任何帮助将不胜感激。

以下是每张图像第二次出现的错误。

2016-10-27 17:34:59.081026 pushNotificationServiceExtension[651:34632] Attachement Error = Error Domain=UNErrorDomain Code=100 "Invalid attachment file URL" UserInfo={NSLocalizedDescription=Invalid attachment file URL}

另请告诉我如何查看App Group共享容器,找不到查看其中包含的文件的方法。

*更新= *文件在推送通知中显示后被删除。

来自apple“ UNNotificationAttachment一旦验证,附加文件就会被移动到附件数据存储中,以便可以通过适当的进程访问它们。位于应用程序包中的附件将被复制而不是移动。”

所以我将我的表情符号图像复制到重复的URL并将其分配给UNNotificationAttachment。

if (imageFileURL) {

            NSURL* duplicateImageURL =  [self getFullPath:@"EmojiAttachment"];
            if (![fileManager fileExistsAtPath:duplicateImageURL.path]) {
                [fileManager createDirectoryAtPath:duplicateImageURL.path withIntermediateDirectories:NO attributes:nil error:&error];
            }
            emojiName = [NSString stringWithFormat:@"%@ Unpressed.png", emojiName];
            duplicateImageURL = [duplicateImageURL URLByAppendingPathComponent:emojiName];
            [[NSFileManager defaultManager]copyItemAtURL:imageFileURL toURL:duplicateImageURL error:&error];
            UNNotificationAttachment * attachement = [UNNotificationAttachment attachmentWithIdentifier:emojiName URL:[duplicateImageURL filePathURL] options:nil error:&error];

            if (error == nil) {
                self.bestAttemptContent.attachments = @[attachement];

            }
            else{
                NSLog(@"Attachement Error = %@",error);
            }
        }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM