SynchronizedUIActionSheetDemo icon indicating copy to clipboard operation
SynchronizedUIActionSheetDemo copied to clipboard

Synchronized UIActionSheet Demo

Results 3 SynchronizedUIActionSheetDemo issues
Sort by recently updated
recently updated
newest added

下面这种方式调用会出现UI无响应的问题,麻烦有时间了帮忙看下。 ``` dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ dispatch_async(dispatch_get_main_queue(), ^{ SynchronizedUIActionSheet * synActionSheet = [[SynchronizedUIActionSheet alloc] init]; synActionSheet.titles = [NSArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", nil]; synActionSheet.destructiveButtonIndex = 1; synActionSheet.cancelButtonIndex = 3; NSUInteger result...

SynchronizedUIActionSheet中添加的title多于屏幕,出现滚动条后。 如果先滚动view,那CFRunLoopStop就会失败,返回始终为index=0

bug