您的位置:首页 > 移动开发 > IOS开发

欢迎使用CSDN-markdown编辑器

2016-01-07 12:06 441 查看
@interface YZLoginViewController ()

@property (nonatomic,strong) UIImageView *userImageView;

@property (nonatomic,strong) UITextField *usernameTextField;

@property (nonatomic,readwrite) UITextField *passwordTF;

@end

关于@interance 在IOS类个的作用是有两个。1、此处定义的变量作为私有变量,在整个类中可以使用。2、如果在.h文件对外公开的属性,在这里可以变更。例如我们想把某个属性定义为对外为只读,但是对内为读写状态,则我们可以设置如下。

在.h对外公开的属性中为@property (nonatomic,readonly) UITextField *passwordTF;

在.m对内设置的属性为@property (nonatomic,readwrite) UITextField *passwordTF;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  interface ios