码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
启动图实现:UIScrollView+UIPageControl简单实现
#import "MJViewController.h"#import "RootViewController.h"@interface MJViewController () <UIScrollViewDelegate>@property (strong, nonatomic) UIScrollV ...
分类:其他好文   时间:2016-04-22 16:22:52    阅读次数:125
滑动隐藏导航栏的设置
今天无意之中学习一个项目,学到一个大的知识点,在这里和大家分享一下: 1. 滑动隐藏导航栏的设置: @property (nonatomic, readwrite, assign) BOOL hidesBarsOnSwipe NS_AVAILABLE_IOS(8_0) __TVOS_PROHIBIT ...
分类:其他好文   时间:2016-04-21 09:58:22    阅读次数:129
获取设备、APP的一些信息
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> 获取设备的一些信息: UIDevice *device = [UIDevice currentDevice]; @property(nonatomic,readonly,stron ...
分类:移动开发   时间:2016-04-20 12:59:39    阅读次数:160
IOS开发之——意见反馈UITextView的使用
@interface DMFeedbackViewController ()<UITextViewDelegate,UIAlertViewDelegate>@property (nonatomic, strong) UITextView *feedbackTextView;//意见反馈输入框@pro ...
分类:移动开发   时间:2016-04-20 09:59:34    阅读次数:321
copy weak strong assign等等
/**  *  微博的内容(文字)  */ @property (nonatomic, copy) NSString *text; /**  *  微博的转发数  */ @property (nonatomic, assign) int reposts_count; /**  *  微博的作者  */ @property (nonatomic, ...
分类:其他好文   时间:2016-04-19 14:22:17    阅读次数:212
UI- UIView控件知识点回顾
// 通过一个frame来初始化一个UI控件 - (id)initWithFrame:(CGRect)frame; // YES:能够跟用户进行交互 @property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEn ...
分类:其他好文   时间:2016-04-16 12:21:42    阅读次数:113
Xcode(object-c) 常用代码段
Xcode常用代码段1.如何创建常用代码段。将常用的代码拖入下图设置代码的名称,以及快捷方式。yfnsfunc就是代码的快捷方式,2.给代码段设置类型属性。变量设置格式为@property (nonatomic,strong) NSMutableArray *dataList;@property(n... ...
分类:其他好文   时间:2016-04-16 12:18:42    阅读次数:183
新生的html5框架webkit 各个类的API讲解
WKWebView // webview 配置,具体看下面 @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration; // 导航代理 @property (nullable, nonatomic, wea ...
分类:Windows程序   时间:2016-04-14 17:56:43    阅读次数:1344
iOS 用 SDWebImage 清理图片缓存
效果图如下: 1.找到 SDWebImage找到SDImageCache类 添加如下方法 具体用tableView实现 #import "MoreViewController.h" @interface MoreViewController () @property(nonatomic,strong ...
分类:移动开发   时间:2016-04-13 23:33:05    阅读次数:244
iOS UITextView 根据输入text自适应高度
#import "ViewController.h" @interface ViewController ()<UITextViewDelegate> // KVO和动态自适应尺寸 @property (nonatomic, strong)UITextView *txtView; // KVO测试 ...
分类:移动开发   时间:2016-04-11 23:50:29    阅读次数:491
1690条   上一页 1 ... 34 35 36 37 38 ... 169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!