码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
iOS学习笔记31-音频
#import <AVFoundation/AVFoundation.h> @interface ViewController () @property(nonatomic,strong)AVAudioPlayer *player; @end @implementation ViewControll
分类:移动开发   时间:2016-02-29 21:30:53    阅读次数:219
iOS 归档
#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App
分类:移动开发   时间:2016-02-29 10:32:49    阅读次数:216
iOS 项目日志 -- 密码强度 实现
没有采用Predicate 直接用的是bool值做的 代码如下 @interface ViewController ()<UITextFieldDelegate> @property (weak, nonatomic) IBOutlet UIProgressView *levelProgress;
分类:移动开发   时间:2016-02-28 12:38:58    阅读次数:200
在Attribute Inspector 上显示自定义的控件的属性
FirstColor 跟 CornerRadious 都是新增的显示属性具体实现方法如下: @property(nonatomic,weak)IBInspectable UIColor *firstColor; /...................................../ - (v
分类:其他好文   时间:2016-02-28 10:58:48    阅读次数:294
iOS项目-支付宝手势密码锁
难点在于 九宫格button的布局 还有 手势移动时记住手势位置 上代码 @property (nonatomic,strong)NSMutableArray *selectedBtns; @property (nonatomic,assign)CGPoint currentPoint; 两个变量,
分类:移动开发   时间:2016-02-27 07:24:06    阅读次数:306
iOS开发一行代码系列:一行搞定数据库
原理iOS 和 SQL的相应关系Model类结构 => SQL表结构Model实例 => SQL表中的一行Model实例的属性 => SQL表中的一列Model和Table的相应@interface TestModel :NSObject @property (assign, nonatomic)
分类:移动开发   时间:2016-02-26 13:59:19    阅读次数:145
IOS UI-控制器的生命周期
一、控制器的生命周期 代码 1 @interface NJOneViewController () 2 3 @property (nonatomic, strong) NSArray *foods; 4 @end 5 6 @implementation NJOneViewController 7 8
分类:移动开发   时间:2016-02-25 22:40:14    阅读次数:247
ios 开发视图界面动态渲染
#import "MyView.h" IB_DESIGNABLE @interface MyView () @property (nonatomic, strong) IBInspectable UIColor * borderColor; @property (nonatomic, assign)
分类:移动开发   时间:2016-02-25 10:16:54    阅读次数:174
IOS-UI-基本控件之UISwitch
UISwitch(开关,默认为关)IOS开发中必不可少的基本控件,主要用于只有两种的选择,比如飞行模式等等,本文主要是列出常用的属性及方法(注XCode版本为7.2)//默认状态//属性@property(nullable,nonatomic,strong)UIColor*onTintColor;//开着的时候控件的颜色代码:one.onTintCo..
分类:移动开发   时间:2016-02-24 21:14:29    阅读次数:281
UI整理-----part7--模态视图 push&pop
1.@property(nullable, nonatomic,readonly) UIViewController *presentedViewController和@property(nullable, nonatomic,readonly) UIViewController *presenti
分类:其他好文   时间:2016-02-23 14:36:43    阅读次数:274
1690条   上一页 1 ... 42 43 44 45 46 ... 169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!