【发布时间】:2014-09-19 12:41:48
【问题描述】:
这是iOS7中的一些错误吗?我用
截图UIActionSheetStyleBlackOpaque,
UIActionSheetStyleBlackTranslucent,
UIActionSheetStyleAutomatic,
UIActionSheetStyleDefault.
都是一样的。
UIActionSheet *action = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"OK" otherButtonTitles:nil, nil];
[action setActionSheetStyle:UIActionSheetStyleBlackTranslucent]; // changing enumerable here shows exactly same result
[action showInView:_controlsView];
【问题讨论】:
标签: ios objective-c cocoa-touch ios7 uiactionsheet