#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
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> 获取设备的一些信息: UIDevice *device = [UIDevice currentDevice]; @property(nonatomic,readonly,stron ...
分类:
移动开发 时间:
2016-04-20 12:59:39
阅读次数:
160
@interface DMFeedbackViewController ()<UITextViewDelegate,UIAlertViewDelegate>@property (nonatomic, strong) UITextView *feedbackTextView;//意见反馈输入框@pro ...
分类:
移动开发 时间:
2016-04-20 09:59:34
阅读次数:
321
/**
* 微博的内容(文字)
*/
@property
(nonatomic,
copy)
NSString
*text;
/**
*
微博的转发数
*/
@property
(nonatomic,
assign)
int
reposts_count;
/**
*
微博的作者
*/
@property
(nonatomic,
...
分类:
其他好文 时间:
2016-04-19 14:22:17
阅读次数:
212
// 通过一个frame来初始化一个UI控件 - (id)initWithFrame:(CGRect)frame; // YES:能够跟用户进行交互 @property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEn ...
分类:
其他好文 时间:
2016-04-16 12:21:42
阅读次数:
113
Xcode常用代码段1.如何创建常用代码段。将常用的代码拖入下图设置代码的名称,以及快捷方式。yfnsfunc就是代码的快捷方式,2.给代码段设置类型属性。变量设置格式为@property (nonatomic,strong) NSMutableArray *dataList;@property(n... ...
分类:
其他好文 时间:
2016-04-16 12:18:42
阅读次数:
183
WKWebView // webview 配置,具体看下面 @property (nonatomic, readonly, copy) WKWebViewConfiguration *configuration; // 导航代理 @property (nullable, nonatomic, wea ...
分类:
Windows程序 时间:
2016-04-14 17:56:43
阅读次数:
1344
效果图如下: 1.找到 SDWebImage找到SDImageCache类 添加如下方法 具体用tableView实现 #import "MoreViewController.h" @interface MoreViewController () @property(nonatomic,strong ...
分类:
移动开发 时间:
2016-04-13 23:33:05
阅读次数:
244
#import "ViewController.h" @interface ViewController ()<UITextViewDelegate> // KVO和动态自适应尺寸 @property (nonatomic, strong)UITextView *txtView; // KVO测试 ...
分类:
移动开发 时间:
2016-04-11 23:50:29
阅读次数:
491