CYMailDemo icon indicating copy to clipboard operation
CYMailDemo copied to clipboard

MailEditViewController.h的BUG

Open githubofsanren opened this issue 7 years ago • 0 comments

点击相册选择附件时崩溃,你的具体代码是: #pragma mark -JSImageDelegate

  • (void)imagePicker:(JSImagePickerViewController *)imagePicker didSelectImage:(UIImage *)image andALAssetRepresentation:(id)ALAssetRepresentation{

    NSString *fileName = @""; if ([ALAssetRepresentation isKindOfClass:[ALAssetRepresentation class]]) { fileName = [ALAssetRepresentation filename]; } NSData *fileData = UIImagePNGRepresentation(image);

    CYTempAttachment *attachment = [CYTempAttachment attachmentModelWithFileName:fileName fileData:fileData];

    [self.attachments addObject:attachment]; [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationAutomatic]; }

1. 应改为:

#pragma mark -JSImageDelegate

  • (void)imagePicker:(JSImagePickerViewController *)imagePicker didSelectImage:(UIImage *)image andALAssetRepresentation:(id)ALAssetRepresentation{

    NSString *fileName = @""; if ([ALAssetRepresentation isKindOfClass:[NSString class]]) { fileName = ALAssetRepresentation; }else{ fileName = [ALAssetRepresentation filename]; }

    NSData *fileData = UIImagePNGRepresentation(image);

    FHTempAttachment *attachment = [FHTempAttachment attachmentModelWithFileName:fileName fileData:fileData];

    [self.attachments addObject:attachment]; [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationAutomatic]; }

githubofsanren avatar Aug 09 '17 07:08 githubofsanren