码迷,mamicode.com
首页 >  
搜索关键字:__weak    ( 1256个结果
iOS -- UIScrollView Delegate 代理
#import "MJViewController.h"@interface MJViewController () @property (weak, nonatomic) IBOutlet UIScrollView *scrollView;@property (weak, nonatomic) I...
分类:移动开发   时间:2015-10-01 11:41:31    阅读次数:224
iOS -- UIScrollView的基本属性(contentSize, contentInset, contentOffset)的用法
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;@property (weak, nonatomic) IBOutl...
分类:移动开发   时间:2015-09-30 19:36:49    阅读次数:326
iOS ARC注释和错误的解决方法在使用
1、一个错误The current deployment target does not support automated __weak references这个错误被所述支持iOS版本号不支持相对低的weakkeyword,要替换 unsafe_unretained 问题得以克服。 ...
分类:移动开发   时间:2015-09-30 16:05:34    阅读次数:232
UIWebView的使用
利用国庆假期,复习了一下之前学的知识,发现之前的知识自己都忘的差不多了,赶紧的抓紧时间好好的练习练习,为下个月找工作做好准备啊......#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic)...
分类:Web程序   时间:2015-09-30 10:53:22    阅读次数:264
iOS 里面 NSTimer 防止 循环引用
使用NSTimer的类#import "TBTimerTestObject.h"#import "TBWeakTimerTarget.h"@interface TBTimerTestObject()@property (nonatomic, weak) NSTimer *timer;@end@imp...
分类:移动开发   时间:2015-09-29 18:23:21    阅读次数:308
UIPickerView
有时候我们需呀输入的内容是联动的,比如省份与城市,书名与章节等,这时候我们可以使用UIPickerVIew来实现.首先向设计界面中拖入一个pickerView并关联代码,同时设置dataSource和delegate代理.注:不要忘了在.h文件中添加协议@property (weak, nonato...
分类:其他好文   时间:2015-09-29 16:55:14    阅读次数:160
一个控件weak的小解释
因为控件他爹( view.superview )已经揪着它的小辫了( strong reference ),你( viewController )眼瞅着( weak reference )就好了。当然,如果你想在 view 从 superview 里面 remove 掉之后还继续持有的话,还是要用 ...
分类:其他好文   时间:2015-09-28 20:44:56    阅读次数:135
设置UITableViewCell 选中时的背景颜色
自定义Cell如图一个View上面放了四个Label分别连线到.m文件中@property (weak, nonatomic) IBOutlet UILabel *nameLabel;@property (weak, nonatomic) IBOutlet UILabel *positionLabe...
分类:其他好文   时间:2015-09-27 22:54:06    阅读次数:454
UIImagePickerController之Block回调
方法使用:引入头文件#import "UIImagePickerController+Block.h"我这拖出来的两个属性@property (weak, nonatomic) IBOutlet UIImageView *showImageView;- (IBAction)openClick;// ...
分类:其他好文   时间:2015-09-25 07:09:05    阅读次数:176
显示天气预报的Demo
实现的效果如下所示:代码如下:ViewController.h#import @interface ViewController : UIViewController@property (weak, nonatomic) IBOutlet UIPickerView *cityPickView;- (...
分类:其他好文   时间:2015-09-24 19:20:18    阅读次数:143
1256条   上一页 1 ... 75 76 77 78 79 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!