Closed. This question needs to be more focused。它当前不接受答案。












想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。

7年前关闭。



Improve this question




我是一名iPhone新手。我想以编程方式创建UILabel,并且我想知道UILabel类的所有属性和功能。

最佳答案

UILabel *label = [[[UILabel alloc] initWithFrame:...] autorelease];
// Do some stuff
[self.view addSubview:label];

UILabel引用:
http://developer.apple.com/library/ios/#documentation/uikit/reference/UILabel_Class/Reference/UILabel.html

关于iphone - 以编程方式创建标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5442894/

10-09 16:13
查看更多