xcode 4.5 中XIB文件中IBOutlet如何关联控件
2个回答
展开全部
今天下午为这个耽误了一两个小时,以前用低版本3.2,IBOutlet和IBAction都可以添加在IBuilder中,4.5 找不到添加的地方。
正确的关联,遵循以下几个步骤:
1 在A.h头文件中 声明属性
@property (strong, nonatomic) IBOutlet UILabel *lblStationName;
2 打开A.xib文件,在Identity Inspector中,Custom Class 选择A,而不是默认的TableViewCell
3 在A.xib 中添加一个 Label控件
4 在Connections Inspector中,就会出现lblStationName,点中后面的+号,拖动到Label控件,
使之关联,关联成功Label控件会变成蓝色。
今天又发现另外一种关联方法,分享给大家。
情景描述:随便新建了一个viewController,取名A,在里面拖了一个Button,想给Button加一个Click事件。1
A.h
@interface A: UIViewController
@property (strong,nonatomic) IBOutlet UIButton * viewButton;
选中添加的按钮,在Connections Inspector中,Sent Events中,按住Ctrl键,和Touch Down 后面对应的+,拖动到File's Owner,就会出现IBAction viewButtonClick,点击就关联上了。
展开全部
正确的关联,遵循以下几个步骤:
1 在A.h头文件中 声明属性
@property (strong, nonatomic) IBOutlet UILabel *lblStationName;
2 打开A.xib文件,在Identity Inspector中,Custom Class 选择A,而不是默认的TableViewCell
3 在A.xib 中添加一个 Label控件
4 在Connections Inspector中,就会出现lblStationName,点中后面的+号,拖动到Label控件,
使之关联,关联成功Label控件会变成蓝色。
今天又发现另外一种关联方法,分享给大家。
情景描述:随便新建了一个viewController,取名A,在里面拖了一个Button,想给Button加一个Click事件。1
A.h
@interface A: UIViewController
@property (strong,nonatomic) IBOutlet UIButton * viewButton;
1 在A.h头文件中 声明属性
@property (strong, nonatomic) IBOutlet UILabel *lblStationName;
2 打开A.xib文件,在Identity Inspector中,Custom Class 选择A,而不是默认的TableViewCell
3 在A.xib 中添加一个 Label控件
4 在Connections Inspector中,就会出现lblStationName,点中后面的+号,拖动到Label控件,
使之关联,关联成功Label控件会变成蓝色。
今天又发现另外一种关联方法,分享给大家。
情景描述:随便新建了一个viewController,取名A,在里面拖了一个Button,想给Button加一个Click事件。1
A.h
@interface A: UIViewController
@property (strong,nonatomic) IBOutlet UIButton * viewButton;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询