在我正在开发的照片应用程序中,我有一个documentInteractionController,可以让人们将照片发送到各种效果很好的应用程序。
当发送到Instagram时,图像不会填充Instagram中的方块,因为它是由Instagram调整大小的,所以我为此创建了一个特殊的Instagram方形图像。
图像创建很好,但是当我在检查后尝试更改docController.URL属性时,他们选择了Instagram,应用程序崩溃,没有任何有用的错误消息。
以下是我用于切换网址的代码:
- (void)documentInteractionController:(UIDocumentInteractionController *)controller willBeginSendingToApplication:(NSString *)application {
if ([application isEqualToString:@"com.burbn.instagram"]) {
controller.URL =[self createInstagramFormatURL];
}
}
任何人都有任何想法我会出错?
感谢。