SBTableAlert的问题..它显示警报但不显示UITableView

时间:2011-09-29 16:19:32

标签: iphone objective-c ios

我不知道是否有人有SBTableAlert的经验。它看起来很棒,但文档不多。

它也没有调用UITableView将使用的任何函数。任何人都可以帮助使用以下代码。

//load the bookmarks and setup the popup
SBTableAlert *bookmarkAlert;

bookmarkAlert = [[SBTableAlert alloc] initWithTitle:@"Jump to:" cancelButtonTitle:@"Back" messageFormat:nil];
[bookmarkAlert setDelegate:self];
//[bookmarkAlert setDataSource:self];

NSString *settingsicon = [[NSBundle mainBundle] pathForResource:@"gear" ofType:@"png"];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageWithContentsOfFile:settingsicon] style:UIBarButtonItemStylePlain target:bookmarkAlert action:@selector(show)];

1 个答案:

答案 0 :(得分:0)

在上面的代码中,您没有设置数据源。这将是你没有得到你想要的东西的明显原因,除非你稍后再设置它。