#import <UIKit/UIKit.h> typedef void (^BLOCK)(UIColor *); @interface SecondViewController : UIViewController @property(nonatomic,copy)BLOCK backColorB
分类:
其他好文 时间:
2016-01-27 21:23:53
阅读次数:
115
1.触摸事件 1 #import "ViewController.h" 2 @interface ViewController () 3 @property (strong,nonatomic) UILabel *simple; 4 @end 5 6 @implementation ViewCont
分类:
其他好文 时间:
2016-01-27 21:13:46
阅读次数:
119
效果图首先你得画出这只眼睛,这是眼睛包括5个部分组成:1 @property (strong, nonatomic) CAShapeLayer *eyeFirstLightLayer;2 @property (strong, nonatomic) CAShapeLayer *eyeSecondLig...
分类:
微信 时间:
2016-01-26 21:58:23
阅读次数:
422
生成二维码前提:需要导入以下代码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
#import "ViewController.h"@interface ViewController ()@property (nonatomic,strong) CALayer *hourLayer;@property (nonatomic,strong) CALayer *minLayer;@...
分类:
其他好文 时间:
2016-01-25 20:59:40
阅读次数:
186
1 #import 2 3 @interface HMFileDownloader : NSObject 4 /** 5 * 所需要下载文件的远程URL(连接服务器的路径) 6 */ 7 @property (nonatomic, copy) NSString *url; ...
分类:
移动开发 时间:
2016-01-25 20:57:21
阅读次数:
233
#import "ViewController.h"#import "OneViewController.h"#import "TwoViewController.h"@interface ViewController ()@property (nonatomic, strong) UISegmen...
分类:
其他好文 时间:
2016-01-25 19:33:44
阅读次数:
212
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