首页 > 其他 > 详细

Class hierarchy of UIResponder as well as subclasses of UIView and UIControl

时间:2014-06-25 20:56:27      阅读:418      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

 

When you were dragging in your label and your button to this view, you were adding them as subviews.
By doing this programmatically you can see what goes into adding a subview. You’d
need to pass in a frame to the alloc:initWithFrame: method, which is found on
most UIView subclasses:

 

CGRect frame = CGRectMake(0,0,100,20);
UILabel *label = [[UILabel alloc] initWithFrame:frame];

// To add this label to its parent view within a view controller, all you have to
// do is use the addSubView: function.
[self.view addSubView:label];

// Retrieving the frame, making a change to its size or origin, and then 
// resetting its frame property
CGRect frame = label.frame;
frame.origin.x = 10;
frame.size.width = 200;
[label setFrame:frame];

 

 

 

Class hierarchy of UIResponder as well as subclasses of UIView and UIControl,布布扣,bubuko.com

Class hierarchy of UIResponder as well as subclasses of UIView and UIControl

原文:http://www.cnblogs.com/davidgu/p/3805521.html

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