我UITableView
用来自MySQL-DB
.
如果我的表没有任何条目,我想显示一个空的表视图。
我可以这样做吗:
- (UITableView *)returnNumberOfRowsForSection { (=> Pseudocode)
if (Table is empty) {
return 0;
} else {
return (Entry Count);
}
}
我UITableView
用来自MySQL-DB
.
如果我的表没有任何条目,我想显示一个空的表视图。
我可以这样做吗:
- (UITableView *)returnNumberOfRowsForSection { (=> Pseudocode)
if (Table is empty) {
return 0;
} else {
return (Entry Count);
}
}