码迷,mamicode.com
首页 > 其他好文 > 详细

使用在storyBoard之外的xib创建对象

时间:2016-04-29 00:00:45      阅读:475      评论:0      收藏:0      [点我收藏+]

标签:

1、在storyBoard之外的xib
要注意的是:TableView的代理一定要设置为FilesOwner
使用:
方式一:
直接创建对象如下,(如果要使用xib里的控件,那么就要将xib里的控件作为成员变量了)
GACityRegonController *gaRegonVC=[[GACityRegonController alloc]init];
 
技术分享
 
注意在storyBoard中,使用storyBoard获取对象的:
如:
GAViewController *vc= [self.storyboard instantiateViewControllerWithIdentifier:@"GAViewController"];
 
 
方式二:
从编译好的文件中获取(NSBundle中)
可以定义自己的类方法
//———————————ConstomUIView.h-----------------------------------------------
1、创建、并设置好xib
 
#import <UIKit/UIKit.h>
 
@interface ConstomUIView : UIView
//将xib的控件都作为属性
@property (unsafe_unretained, nonatomic) IBOutlet UIButton *imageButton;
@property (weak, nonatomic) IBOutlet UILabel *upLable;
@property (weak, nonatomic) IBOutlet UILabel *title;
//定义一个类方法,返回类对象
+(id)view;
@end
 
2、实现方法
//———————————ConstomUIView.m-----------------------------------------------
#import "ConstomUIView.h"
@implementation ConstomUIView

+(id)view{
    //从NSBundle中获取文件,创建类对象 
    return [[[NSBundle mainBundle]loadNibNamed:@"ConstomView" owner:nil options:nil] lastObject];
}
//防止横屏控件拉伸
- (id)initWithCoder:(NSCoder *)aDecoder {
    if (self = [super initWithCoder:aDecoder]) {
//不自动设置大小
        self.autoresizingMask = UIViewAutoresizingNone;
    }
    return self;
}
@end
 
3、使用:调用类方法创建对象
ConstomUIView *cityView=[ConstomUIView view];
 
技术分享
 
//---------------------------------------------------------------------
 
 
 

使用在storyBoard之外的xib创建对象

标签:

原文地址:http://www.cnblogs.com/lignpeng/p/5444740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!