码迷,mamicode.com
首页 >  
搜索关键字:weak reference的介绍    ( 1258个结果
0108 --block -__weak self
//图片被点击事件,当前第几张图片被点击了,和数组顺序一致 __weak NewsgzzViewController *wself = self;[TopScro setImageViewDidTapAtIndex:^(NSInteger index) { printf("第%zd张图片\...
分类:其他好文   时间:2016-01-08 18:49:33    阅读次数:121
std::sort要求strict weak ordering
strict weak ordering简单地说就是小于语义,非小于等于语义,也就是说对于相等的或者异常的元素比较应当返回false后果很严重,在google搜一下violating strict weak ordering make std::sort crash能看到很多种后果,经测试,当待排序...
分类:其他好文   时间:2016-01-08 00:11:58    阅读次数:309
解决Block弱引用可能造成的循环引用
1.__weak typeof(self) myself = self;2.__weak RecommendViewController *recommendVC = self;以上两种写法是一种效果typeof(self) 是获取到self的类型,这样定义出的weakSelf就是和self一个类型...
分类:其他好文   时间:2016-01-06 23:50:20    阅读次数:481
iOS UI-集合视图(UICollectionView)
BowenCollectionViewCell.xib 1 #import 2 3 @interface BowenCollectionViewCell : UICollectionViewCell 4 5 @property (weak, nonatomic) IBOutlet U...
分类:移动开发   时间:2016-01-06 17:23:36    阅读次数:911
label中设置某些指定的字体的属性设置(Color,Size,FontColor)
不知道大家有没有遇到要设置某些字体的颜色和大小等属性的设置,下面就让我们一起走进字体的变形王国吧!!!1.在storyboard中拖一个控件label,拖线设置属性为:@property (weak, nonatomic) IBOutlet UILabel *EasyLabel;2.在viewDid...
分类:其他好文   时间:2016-01-06 15:27:12    阅读次数:136
线程间通信的三种方式(NSThread,GCD,NSOperation)
一.NSThread线程间通信#import "ViewController.h"@interface ViewController ()@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;@property (weak, ...
分类:编程语言   时间:2016-01-05 22:14:49    阅读次数:530
iOS UI-UIScrollView控件实现图片轮播 (UIPageControl-分页指示器)
一、实现效果实现图片的自动轮播 二、实现代码storyboard中布局代码: 1 #import "ViewController.h" 2 #define HMImageCount 5 3 @interface ViewController () 4 @property (weak, ...
分类:移动开发   时间:2016-01-03 20:56:11    阅读次数:1120
iOS面试题
1.什么情况使用 weak 关键字,相比 assign 有什么不同? (1)什么情况使用 weak 关键字? 在ARC中,在有可能出现循环引用的时候,往往要通过让其中一端使用weak来解决,比如:delegate代理属性。 自身已经对它进行一次强引用,没有必要再强引用一次,此时也会...
分类:移动开发   时间:2016-01-03 17:07:17    阅读次数:199
帧动画的完整实现: 代码直接演示
帧动画的完整实现: 直接上代码演示更加清晰 1 帧动画完整代码实现: 2 #import "ViewController.h" 3 @interface ViewController () 4 5 @property (weak, nonatomic) IBOutlet UIImageView *....
分类:其他好文   时间:2016-01-02 01:02:32    阅读次数:204
接下来要总结的东西
C语言方面:1.字符串2.递归OC语法方面:1.copy2.block3.ARC4.weak指针 strong指针iOS开发:1.MVC 总结自斯坦福大学iOS课程
分类:其他好文   时间:2015-12-30 23:36:11    阅读次数:222
1258条   上一页 1 ... 66 67 68 69 70 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!