我有一个问题,我希望这里有人可以帮助我!提前致谢。
我有一个“范围”按钮(见屏幕截图!),它链接到一个 segue,segue 转到一个 tableview。
我想做的是在 tableview 控制器中决定是否应该在 table 中显示某些内容,或者我应该抛出一个 alertview。
我所做的是:
if ([_countryScopes count] == 0) {
[self.view removeFromSuperview];
//no scope for this country
NSMutableString *message = [[NSMutableString alloc]initWithString:@"No scope information."];
UIAlertView *av = [[UIAlertView alloc] initWithTitle:countryName message:message delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
//av.tag = MAIN_ALERT;
[av show];
}
但不知何故,空桌子仍然出现。
你知道,我怎样才能摆脱这个?
非常感谢!
问候,雅舒