DowneyJr / UUPhotoActionSheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UUPhotoActionSheet

image

显示自定义ActionSheet

_sheet = [[UUPhotoActionSheet alloc] initWithMaxSelected:9
                                               weakSuper:self];
_sheet.delegate = self;
[self.navigationController.view addSubview:_sheet];

[_sheet showAnimation]; //显示动画


#pragma mark - Custom Deledate

- (void)actionSheetDidFinished:(NSArray *)obj{

     NSLog(@"已发送 %lu 图片",(unsigned long)obj.count);
}

About


Languages

Language:Objective-C 100.0%