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 设置有限数量的字符。所以请告诉我如何为 UILabel 设置有限数量的字符
检查您想要的长度。例如,您希望您的 uilabel 限制为最多 50 个字符。
if([lbl.text length] > 50) nslog(@"stop"); else nslog(@"your stuff goes here");
享受编程!
UILabel本身没有设置属性最大长度的text属性,因此您不能使用类本身中的任何属性或方法来执行此操作。
UILabel
text
您应该在设置之前检查字符串的长度并决定是否允许它