美文网首页
iOS-动态修改xib中控件的大小

iOS-动态修改xib中控件的大小

作者: 亦晴工作室 | 来源:发表于2016-08-25 11:14 被阅读420次
#import ViewController.h
 
@interface ViewController ()
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *top;
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *height;
 
@end
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    
    
    self.top.constant+=100;
    self.height.constant+=100;
    
}
 
@end


相关文章

网友评论

      本文标题:iOS-动态修改xib中控件的大小

      本文链接:https://www.haomeiwen.com/subject/hirosttx.html