我不知道是否有人有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)];
答案 0 :(得分:0)
在上面的代码中,您没有设置数据源。这将是你没有得到你想要的东西的明显原因,除非你稍后再设置它。