• Stars
    star
    142
  • Rank 258,495 (Top 6 %)
  • Language
    Objective-C
  • Created over 9 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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);
}