【发布时间】:2016-01-08 14:48:57
【问题描述】:
我正在使用此代码,但它不起作用,它如何适应它?
有人帮忙吗?谢谢!
UIImage *iconImage = [UIImage imageNamed:@"Home01-A01.png"];
NSString *savePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/whatsAppTmp.wai"];
[UIImageJPEGRepresentation(iconImage, 1.0) writeToFile:savePath atomically:YES];
_documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:savePath]];
_documentInteractionController.UTI = @"net.whatsapp.image";
_documentInteractionController.delegate = self;
[_documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
【问题讨论】:
-
你能指定什么不工作吗?你有错误吗?你期望什么,你会得到什么?
-
它不会出错,但我按下whatsapp图标,应用程序退出。