对不起,我是 iOS 新手。我打算做一个UITableView
里面UIAlertView
。最后我得到了这个教程
我已经UIAlertTableView
以这种方式实现了课程
UIAlertTableView *alert = [[UIAlertTableView alloc] initWithTitle:@"Choose a number"
message:nil
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:nil, nil];
alert.tableDelegate = self;
alert.dataSource = self;
alert.tableHeight = 120;
[alert show];
但是经过测试,我得到 UIAlert 显示一个空白列表,里面没有出现任何项目。以前我有一个我想用作数据源的 NSMUtableArray。从上面的教程中,似乎分配数据源是使用alert.dataSource = self
. 然而我仍然想知道如何使用我的 NSMutableArray 作为数据源以及它与它的关系alert.dataSource
?