码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
iOS开发基础知识--碎片43
iOS开发基础知识--碎片43 iOS开发基础知识--碎片43 1:增加手势进行左划效果,针对视图并修改其中一个的坐标,菜单用隐藏跟显示 @property(strong,nonatomic)UISwipeGestureRecognizer *recognizer; self.recognizer ...
分类:移动开发   时间:2016-08-26 15:33:32    阅读次数:210
ios动力特效,最重要的一点 属性保持(写了动力特效但是没效果的原因就在这里)
@property (nonatomic, strong) UIDynamicItemBehavior *square1PropertiesBehavior; @property (nonatomic, strong) UIDynamicItemBehavior *square2Properties ...
分类:移动开发   时间:2016-08-26 13:29:31    阅读次数:206
iOS开发JOSNModel<optional>,<convertondemand>,<index>
指定定义的key的类型 <optional>表示字段可选,例如 //链接字段是可选的,转换的时候允许link未空 @property (nonatomic,strong) NSString</optional><optional> *link; <index>表示索引,参照1 <convertond ...
分类:移动开发   时间:2016-08-26 10:23:44    阅读次数:399
iOS利用通知逆传值
直接创建两个控制器,点击跳转第二个界面,然后点击按钮进行传值 #import "ViewController.h" #import "TWOOViewController.h" @interface ViewController () @property(nonatomic,weak)UILabel ...
分类:移动开发   时间:2016-08-23 01:10:38    阅读次数:217
iOS仿直播带有气泡动画的UIButton
现在直播软件确实很火,因为需要就写了一个带有动画气泡的按钮,代码中的部分动画有参考到其他童鞋,在这里万分感谢! .h文件 .m文件 调用方法很简单: @interface ViewController () @property(nonatomic,strong)YYBubbleButton *but ...
分类:移动开发   时间:2016-08-22 16:16:38    阅读次数:241
iOS autoresizing布局
在对UIView以及其子类空间的布局方案有多种,今天温习了一下autoresizing布局 一、了解一下相关知识: 1、UIView其中一个属性为 @property(nonatomic) UIViewAutoresizing autoresizingMask; // simple resize. ...
分类:移动开发   时间:2016-08-19 18:46:33    阅读次数:373
ios录音、音频播放功能
#import <AVFoundation/AVFoundation.h> { NSInteger _timeCount; NSTimer *_timer; } @property(nonatomic,retain)AVAudioPlayer *audioPlayer;@property(nonat ...
分类:移动开发   时间:2016-08-18 19:38:10    阅读次数:157
ios label首行缩进问题
@property (weak, nonatomic) IBOutlet UILabel *contentLabel; @end @implementation WJAboutMFViewController - (void)viewDidLoad { [super viewDidLoad]; // ...
分类:移动开发   时间:2016-08-18 10:05:17    阅读次数:614
Masonry 控件详解
1. Masonry的属性 @property (nonatomic,strong,readonly)MASConstraint *left; //左侧 @property(nonatomic,strong,readonly) MASConstraint *top;//上侧 @property(no ...
分类:其他好文   时间:2016-08-17 10:26:21    阅读次数:421
iOS开发UI篇—popoverController使用注意
一、设置尺寸 提示:不建议,像下面这样吧popover的宽度和高度写死。 更好的设计是:popover的尺寸应该由内部控制器的内容所决定。 内容控制器可以自行设置自己在popover中显示的尺寸,其中有两种方法: (1)在iOS 7之前 @property (nonatomic,readwrite) ...
分类:移动开发   时间:2016-08-14 23:56:51    阅读次数:352
1690条   上一页 1 ... 22 23 24 25 26 ... 169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!