【发布时间】:2013-05-21 17:36:59
【问题描述】:
我想在我的应用中添加“评价此应用”弹出窗口,目前正在考虑通过 UIAlertView 执行此操作。
我的警报显示正常,带有标题和取消/完成按钮。
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Rate this App"
message:@"My message" delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"OK", nil];
[alert show];
我现在需要做的是用 5 个自定义按钮(星号)替换“我的消息”部分。
如何在uialertview的中间添加一行自定义按钮?!
【问题讨论】:
标签: popup uialertview rate