小文件下载NSURLConnection-delegate实现,可以监听到下载的进度,但是还是无法解决内存飙升的问题,所以仅限小文件下载 1 @interface ViewController () 2 @property (weak, nonatomic) IBOutlet UIProgressV...
分类:
移动开发 时间:
2016-01-17 12:07:09
阅读次数:
249
http://docwiki.embarcadero.com/RADStudio/Seattle/en/Automatic_Reference_Counting_in_Delphi_Mobile_Compilers#Weak_ReferencesWeak ReferencesAnother impo...
分类:
其他好文 时间:
2016-01-16 19:07:38
阅读次数:
121
解决方案:__weak SettingsTableViewController *weakSelf = self;
分类:
其他好文 时间:
2016-01-15 12:32:59
阅读次数:
96
UIScrollView底层实现:修改bounds,就等于UIScrollView的contentOffset偏移量#import "ViewController.h" @interface ViewController () @property (nonatomic, weak) UIView *...
分类:
其他好文 时间:
2016-01-15 06:19:31
阅读次数:
195
我们知道在设置类的属性时,控件一般中weak,对象一般用strong,数据类型一般使用assign,其中weak和assign都不会使计数器增加,那为什对象不可以使用assign呢?weak与assignd的区别:weak:弱指针,不会让引用计数器+1,当其指向的对象被销毁时,这个弱指针会被清空,n...
分类:
其他好文 时间:
2016-01-14 14:01:10
阅读次数:
115
__weak ViewController *weakSelf = self; dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ ALAssetsLibrary...
分类:
移动开发 时间:
2016-01-13 23:20:21
阅读次数:
197
主要内容:SWOMP的算法流程SWOMP的MATLAB实现一维信号的实验与结果门限参数a、测量数M与重构成功概率关系的实验与结果SWOMP与StOMP性能比较一、SWOMP的算法流程分段弱正交匹配追踪(Stagewise Weak OMP)可以说是StOMP的一种修改算法,它们的唯一不同是选择原子时...
分类:
编程语言 时间:
2016-01-13 10:35:35
阅读次数:
307
#import"ViewController.h"#definekuan[UIScreenmainScreen].bounds.size.width#definegao[UIScreenmainScreen].bounds.size.height@interfaceViewController()<UIScrollViewDelegate>@property(weak,nonatomic)IBOutletUIScrollView*huaKuang;@end@implementationViewCo..
分类:
移动开发 时间:
2016-01-13 00:52:00
阅读次数:
375
#define detal 80;// 按钮间距#import "ZZMenuView.h"@interface ZZMenuView()@property (nonatomic, strong) NSMutableArray *items;@property (weak, nonatomic) I...
分类:
其他好文 时间:
2016-01-11 23:35:40
阅读次数:
230
这个问题纠结了我挺长时间的。一直以为把约束直接添加到动画里面就可以了。但是并没那么简单。-.-其实还是挺简class ViewController: UIViewController { @IBOutlet weak var usernameOutlet: UITextField! @I...
分类:
编程语言 时间:
2016-01-11 14:00:29
阅读次数:
170