
IOS-UI控件
DJ萧云
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IOS-UITextField
//(1)创建 UITextField *textField = [[UITextField alloc] init]; //(2)设置默认显示的字 textField.placeholder = @"请输入密码"; //(3)密码 YES 就是密文,NO 明文 textField.s原创 2014-10-22 11:42:23 · 2820 阅读 · 0 评论 -
ios-UIButton
(1)UIButton的创建原创 2014-10-21 11:39:16 · 8228 阅读 · 0 评论 -
IOS-UILabel
// (1)UILabel创建 UILabel *label = [[UILabel alloc] init]; // (2)设置文字 label.text = @"我是Label^_^\n我是Label^_^\n我是Label^_^"; // (3)设置文字颜色和大小原创 2014-10-21 16:11:35 · 3570 阅读 · 0 评论 -
IOS-UIImageView
// (1)创建 UIImageView *imageView = [[UIImageView alloc ] init]; UIImage *image = [UIImage imageNamed:@"image_photo"]; imageView.image = image; //原创 2014-10-21 17:29:22 · 21284 阅读 · 0 评论