在UIAlertView中填充UITableView

时间:2015-02-05 23:15:14

标签: objective-c uitableview uialertview

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在这种情况下不起作用。

0 个答案:

没有答案