##DAY13——可视化编程之XIB #import "Student.h" @interface StudentTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *headerIma
分类:
其他好文 时间:
2016-02-16 14:46:08
阅读次数:
99
一、UITextField通知(UITextField文本发生变化会调用通知) 初始化一个(连线)UITextField控件 @property (weak, nonatomic) IBOutlet UITextField *pwdField; 在viewDidLoad初始化通知 //注意name和
分类:
移动开发 时间:
2016-02-02 16:38:17
阅读次数:
275
生成二维码前提:需要导入以下代码1.在ViewController的.m文件中定义一个UIImageView属性, 存放二维码@property (weak, nonatomic) IBOutlet UIImageView *imageView;2.在viewDidLoad方法中写以下代码即可sel...
分类:
其他好文 时间:
2016-01-25 22:59:48
阅读次数:
328
1 #import "HMViewController.h" 2 3 @interface HMViewController () 4 @property (weak, nonatomic) IBOutlet UIProgressView *progressView; 5 /** 6...
分类:
移动开发 时间:
2016-01-25 21:06:50
阅读次数:
225
1 #import "HMViewController.h" 2 #import "MBProgressHUD+MJ.h" 3 4 @interface HMViewController () 5 @property (weak, nonatomic) IBOutlet UITextField .....
分类:
移动开发 时间:
2016-01-25 18:54:16
阅读次数:
254
1 #import "HMViewController.h" 2 3 @interface HMViewController () 4 @property (weak, nonatomic) IBOutlet UIImageView *imageView1; 5 @property (...
分类:
移动开发 时间:
2016-01-25 16:45:45
阅读次数:
190
1 #import "NJViewController.h" 2 3 @interface NJViewController () 4 @property (weak, nonatomic) IBOutlet UIImageView *iconView; 5 - (IBAction)nextBt.....
分类:
移动开发 时间:
2016-01-24 12:52:20
阅读次数:
197
1 #import "NJViewController.h" 2 3 @interface NJViewController () 4 5 @property (weak, nonatomic) IBOutlet UIView *customView; 6 - (IBAction)btnCli...
分类:
移动开发 时间:
2016-01-24 12:50:39
阅读次数:
203
1 #import "NJViewController.h" 2 3 @interface NJViewController () 4 @property (weak, nonatomic) IBOutlet UIView *cutomView; 5 6 @end 7 8 @implemen...
分类:
移动开发 时间:
2016-01-24 12:50:31
阅读次数:
148
1 #import "NJViewController.h" 2 3 @interface NJViewController () 4 @property (weak, nonatomic) IBOutlet UIView *customView; 5 6 @end 7 8 @impleme...
分类:
移动开发 时间:
2016-01-24 00:30:14
阅读次数:
141