简体   繁体   中英

CMDActivityViewController crashing in iOS8

Getting crash in CMDActivityViewController for iOS8.

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ArtViewController activityViewController:dataTypeIdentifiersForActivityType:]: unrecognized selector sent to instance 0x7acb0b80'

Solution to this-

In dataTypesForActivityType method of "CMDActivityViewController.m" , return nil , instead of the array dataTypes.

Use this Method as it is

- (NSArray *)dataTypesForActivityType:(NSString *)type {
         return nil;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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