首页 > 其他 > 详细

UIKit 小结

时间:2014-08-06 14:16:01      阅读:273      评论:0      收藏:0      [点我收藏+]

nsobject--uiresponder--uiview

uiresponder类定义了一些操作

uiview有三个属性:  frame, bounds, center

center用于改变控件位置,  bounds 用于改变控件大小

UILabel控件:

类似于c#的label。

CGRect frame = CGRectMake(20,20,100,100);

self.label = [[UILable alloc]initwithframe:frame];

[self.view addSubview:self.label];

UITextview控件:可滚动的多行视图文本区域

CGRect frame = CGRectMake(20,20,200,200);

self.textview = [[UITextView alloc]initWithFrame:frame];

self.textview.text = @"dsafdsafdsafdsa";

 

UIKit 小结,布布扣,bubuko.com

UIKit 小结

原文:http://www.cnblogs.com/AngryCooder/p/3894163.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!