AlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert"
message:nil
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:(NSString *)nil];
UITableView *table = [[UITableView alloc] init];
[alert setValue:table forKey:@"accessoryView"];
我使用上面的方法将UITableView放入我的UIAlertView中。工作正常,但细胞是空的。我知道UITableView的工作原理,但我无法弄清楚如何填充单元格。 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
在这种情况下不起作用。