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