Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以猜测解释性文本是如何添加到“待办事项列表”iPhone 应用程序的空白状态“今日”屏幕中的吗?它是背景图像还是以某种方式位于前面的视图UITableView?
UITableView
提前致谢。
约翰,每次调用您的方法(考虑到numberOfRowsInSection:您只使用一个部分),或者每次调用reloadData您的通过代码或界面生成器)您要显示:UITableViewnumberOfRowsUITableViewexplanationView
numberOfRowsInSection:
reloadData
numberOfRows
explanationView
[explanationView setHidden:(numberOfRows>0)];
这看起来像一个视图,可能是添加和隐藏的 UILabel,并且仅当列表中要显示的项目数为 0 时才取消隐藏。