******隐式动画(手指拖拽Layer)#import "HMViewController.h"@interface HMViewController ()@property (nonatomic, weak) CALayer *layer;@end@implementation HMViewCo...
分类:
移动开发 时间:
2015-09-06 18:12:10
阅读次数:
162
*******#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIView *redView;@end@implementation HMViewContro...
分类:
移动开发 时间:
2015-09-06 17:53:37
阅读次数:
191
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@property (nonatomic,strong) NSOpera...
分类:
编程语言 时间:
2015-09-05 06:32:59
阅读次数:
231
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @property (weak, nonatomic) IBOutlet UIScrollView *scrollView; 6 @property...
分类:
移动开发 时间:
2015-09-03 23:08:40
阅读次数:
205
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;// 定义字典读取plist文件@property (nonatomic...
分类:
移动开发 时间:
2015-09-03 21:40:43
阅读次数:
209
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@property (weak, nonatomic) IBOutlet...
分类:
其他好文 时间:
2015-09-03 19:05:08
阅读次数:
205
//异步函数+全局并发队列 嵌套 异步函数+主队列#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *button;@end@implementati...
分类:
编程语言 时间:
2015-09-02 23:22:58
阅读次数:
346
#import "ViewController.h"@interface ViewController ()//图片框 UIImageView@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation...
分类:
编程语言 时间:
2015-09-02 01:53:01
阅读次数:
158
Find the number Weak Connected Component in the directed graph. Each node in the graph contains a label and a list of its neighbors. (a connected set ...
分类:
其他好文 时间:
2015-09-01 21:12:12
阅读次数:
344
在objective-c的ARC模式中,请看以下代码id objc =[[NSObject alloc]init];这里id默认为强引用在强引用中,有时会出现循环引用的情况,这时就需要weak来帮忙啦int main(int argc, const char * argv[]) { id __we....
分类:
移动开发 时间:
2015-09-01 16:42:49
阅读次数:
183