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.
我希望能够通过 uilabel 设置在没有显示数据时如何添加数据的指令(nsmutablearray)。我怎么做。此外,当数据出现时,如何让它消失?
任何帮助表示赞赏。非常感谢您提前。
简单的检查应该做到这一点
if ([self.myArray count] == 0) { self.myLabel.hidden = NO; } else { self.myLabel.hidden = YES; }
您需要使用插座将 UILabel 连接到您的 UIViewController 子类,然后在有趣的事情发生时向该对象发送消息以设置其 text 属性。
没有更多细节,很难提供更多帮助。