码迷,mamicode.com
首页 >  
搜索关键字:.property    ( 8449个结果
学习IOS开发UI篇--UIScrollView/delegate/pagecontrol/UITimer
1.UIscrollView的属性==================================================1.1 常见属性@property(nonatomic) CGPoint contentOffset;这个属性用来表示UIScrollView滚动的位置@proper...
分类:移动开发   时间:2014-06-07 02:48:31    阅读次数:325
Objective-C中的属性(property)
Objective-C中的属性(property)它组合了新的预编译指令和新的属性访问的语法,新的属性功能显著减少了必须编写的冗长代码的数量。下面我们来比较下面的代码//第一种声明方法-(void)setRainHandling:(float) rainHanding;-(float) rainHa...
分类:其他好文   时间:2014-06-04 20:00:10    阅读次数:255
iOS progressview的简单使用
head 代码。。Java代码#import@interfaceViewController:UIViewController{UIProgressView*progressview;UIProgressView*progressviewbar;NSTimer*timer;}@property(re...
分类:移动开发   时间:2014-06-04 19:55:32    阅读次数:359
Objective C - 4 - 下载图片并且加载到View
#import "LoadInternetImageViewController.h"@interface LoadInternetImageViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@e...
分类:其他好文   时间:2014-05-30 20:28:32    阅读次数:347
iOS开发UI篇—UITableview控件基本使用
iOS开发UI篇—UITableview控件基本使用一、一个简单的英雄展示程序NJHero.h文件代码(字典转模型) 1 #import 2 3 @interface NJHero : NSObject 4 /** 5 * 头像 6 */ 7 @property (nonatomic, c...
分类:移动开发   时间:2014-05-30 12:31:48    阅读次数:355
Oracle Parameter使用
string sqlStr = "update sys_case t set t.content =:CONTENT,t.property=:PROPERTY where id=:ID"; OracleParameter[] parameterValue = { ...
分类:数据库   时间:2014-05-29 12:18:04    阅读次数:283
iOS 运行时添加属性和方法
原文链接http://blog.csdn.net/meegomeego/article/details/18356169第一种:runtime.h里的方法BOOL class_addProperty(Class cls,constchar*name,constobjc_property_attrib...
分类:移动开发   时间:2014-05-28 02:59:54    阅读次数:279
当property遇上category
【当property遇上category】 @property可以在类定义中,以及extension定义中使用,编译器会自动为@property生成代码,并在变量列表(ivar_list_t)中添加相应的以下划线开头的变量。 在category中,编译器允许定义@property,但不会为此@p.....
分类:其他好文   时间:2014-05-28 02:35:35    阅读次数:241
关于Failed to convert property value of type [org.quartz.impl.StdScheduler] to required type [org.springframework.scheduling.quartz.SchedulerFactoryBean
在一个业务类有下列属性private SchedulerFactoryBeanscheduler; public SchedulerFactory BeangetScheduler() { return scheduler; } public void setS...
分类:编程语言   时间:2014-05-27 23:38:16    阅读次数:1397
ios message box
@interface K3ViewController : UIViewController@end#import "K3ViewController.h"@interface K3ViewController ()@property (weak, nonatomic) IBOutlet UILab...
分类:移动开发   时间:2014-05-26 19:15:17    阅读次数:259
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!