这是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];

最佳答案

按照this UIActionSheetStyle常量在iOS 7中未使用。

关于ios - 更改UIActionSheetStyle在iOS7中没有区别吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24993353/

10-13 05:37