码迷,mamicode.com
首页 >  
搜索关键字:Property    ( 8449个结果
作为笔记:Objective-C属性property的一些认识
在头文件中声明:@property (nonatomic,strong) NSString * str;在oc中,这一行代码表示一个名为str的属性。在实现文件.m中声明:@synthesize str;在oc中类中声明了这一句话就会自动生成两个方法(生成属性的getter和setter),一个属性...
分类:其他好文   时间:2014-07-19 20:29:50    阅读次数:190
IOS的一个带动画的多项选择的控件(二)
然后我们来写: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
斯坦福 IOS讲义 课件总结 三
1,@property (nonatomic,readwrite)NSInteger score;注意这里有一个只读和只写的属性,readonly.2,重写初始化方法也可以改名字和传参数,(改名一般以initWith开头),-(instancetype) initWithCardCount:(NSU...
分类:移动开发   时间:2014-07-14 22:10:48    阅读次数:389
Session下载
#import "ViewController.h"@interface ViewController () @property (weak, nonatomic) IBOutlet UIImageView *imageView;@end/**// 下载进度跟进- (void)URLSession:...
分类:其他好文   时间:2014-07-14 14:53:15    阅读次数:271
node开发指南中的microblog项目中遇到的问题总结及解决方法
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
使用容器控制器控制另外两个控制器的view交换
建三个UIViewController 的子控制器,其中一个为根控制器,另外两个控制器的视图作为切换对象AppDelegate中代码//AppDelegate.h中代码#import @interface AppDelegate : UIResponder @property (retain, no...
分类:其他好文   时间:2014-07-13 23:15:04    阅读次数:284
G - Specialized Four-Digit Numbers(1.5.2)
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配置输出到多个日志文件
??????通常我们项目里,有一些重要的日志想单独的输出到指定的文件,而不是全总输出到系统的日志文件里,那么我们log4j为我们提供了这样的功能,下面我们来一步一步看是怎么做的。这里以property的配置方式写,xml方式类似,想了解的,可以看官方文档。...
分类:其他好文   时间:2014-07-13 15:31:47    阅读次数:226
Demo_SWTableViewCell
功能实现:左右滑动TableViewCell,出现自定义视图实现原理:以自定义视图为Button为例,自定义TableViewCell,添加以下属性//ScrollviewtobeaddedtoUITableViewCell@property(nonatomic,weak)UIScrollView*cellScrollView;//Thecell‘sheight@property(nonatomic)CGFloatheight;..
分类:其他好文   时间:2014-07-13 14:22:40    阅读次数:170
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!