在头文件中声明:@property (nonatomic,strong) NSString * str;在oc中,这一行代码表示一个名为str的属性。在实现文件.m中声明:@synthesize str;在oc中类中声明了这一句话就会自动生成两个方法(生成属性的getter和setter),一个属性...
分类:
其他好文 时间:
2014-07-19 20:29:50
阅读次数:
190
然后我们来写:TypeSelectView
这个比较简单,我们只要只要每个TypeView的位置,然后作为自己的subview就好了
@interface TypeSelectView : UIView
@property(nonatomic) BOOL bShown;
@property(nonatomic, strong) TypeView* curSelectedView;
-(id)i...
分类:
移动开发 时间:
2014-07-18 23:04:39
阅读次数:
268
@interface MainViewController : UIViewController @property (strong, nonatomic) UIButton *myBtn; @property (strong, nonatomic) UISlider *mySlider...
分类:
其他好文 时间:
2014-07-18 21:18:24
阅读次数:
179
1,@property (nonatomic,readwrite)NSInteger score;注意这里有一个只读和只写的属性,readonly.2,重写初始化方法也可以改名字和传参数,(改名一般以initWith开头),-(instancetype) initWithCardCount:(NSU...
分类:
移动开发 时间:
2014-07-14 22:10:48
阅读次数:
389
#import "ViewController.h"@interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView;@end/**// 下载进度跟进- (void)URLSession:...
分类:
其他好文 时间:
2014-07-14 14:53:15
阅读次数:
271
1 使用connect-mongdo时,报错:Cannot read property 'Store' of undefined解决: require('connect-mongo')的时候加一个参数express,如下: var express = require('express'); var ...
分类:
其他好文 时间:
2014-07-14 00:30:23
阅读次数:
298
建三个UIViewController 的子控制器,其中一个为根控制器,另外两个控制器的视图作为切换对象AppDelegate中代码//AppDelegate.h中代码#import @interface AppDelegate : UIResponder @property (retain, no...
分类:
其他好文 时间:
2014-07-13 23:15:04
阅读次数:
284
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Find and list all four-digit numbers in decimal notation that have the property ...
分类:
其他好文 时间:
2014-07-13 18:17:24
阅读次数:
198
??????通常我们项目里,有一些重要的日志想单独的输出到指定的文件,而不是全总输出到系统的日志文件里,那么我们log4j为我们提供了这样的功能,下面我们来一步一步看是怎么做的。这里以property的配置方式写,xml方式类似,想了解的,可以看官方文档。...
分类:
其他好文 时间:
2014-07-13 15:31:47
阅读次数:
226
功能实现:左右滑动TableViewCell,出现自定义视图实现原理:以自定义视图为Button为例,自定义TableViewCell,添加以下属性//ScrollviewtobeaddedtoUITableViewCell@property(nonatomic,weak)UIScrollView*cellScrollView;//Thecell‘sheight@property(nonatomic)CGFloatheight;..
分类:
其他好文 时间:
2014-07-13 14:22:40
阅读次数:
170