Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修改了一个不是问题的问题:对传入的数组做了下判断,只接收NSString类型的数据,不然会造出崩溃! #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion SynchronizedUIActionSheetDemo/SynchronizedUIActionSheet.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ - (NSInteger)showInView:(UIView *)view {
_actionSheet.delegate = self;

for (NSString * title in _titles) {
[_actionSheet addButtonWithTitle:title];
if ([title isKindOfClass:[NSString class]]) {
[_actionSheet addButtonWithTitle:title];
}

}
if (_destructiveButtonIndex != -1) {
_actionSheet.destructiveButtonIndex = _destructiveButtonIndex;
Expand Down
3 changes: 2 additions & 1 deletion SynchronizedUIActionSheetDemo/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ - (IBAction)testArgButtonPressed:(id)sender {

- (IBAction)testButtonPressed:(id)sender {
SynchronizedUIActionSheet * synActionSheet = [[SynchronizedUIActionSheet alloc] init];
synActionSheet.titles = [NSArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", nil];
NSNumber *bug = @1.5;
synActionSheet.titles = [NSArray arrayWithObjects:@"aaa", @"bbb",bug, @"ccc", @"ddd", nil];
synActionSheet.destructiveButtonIndex = 1;
synActionSheet.cancelButtonIndex = 3;
NSUInteger result = [synActionSheet showInView:self.view];
Expand Down