1.UIscrollView的属性==================================================1.1
常见属性@property(nonatomic) CGPoint
contentOffset;这个属性用来表示UIScrollView滚动的位置@proper...
分类:
移动开发 时间:
2014-06-07 02:48:31
阅读次数:
325
http://blogs.msdn.com/b/borisj/archive/2006/09/28/769708.aspxI apologize for the
long delay for this section (although I suppose my average posting fr...
分类:
编程语言 时间:
2014-05-30 13:08:38
阅读次数:
362
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
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
原文链接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可以在类定义中,以及extension定义中使用,编译器会自动为@property生成代码,并在变量列表(ivar_list_t)中添加相应的以下划线开头的变量。
在category中,编译器允许定义@property,但不会为此@p.....
分类:
其他好文 时间:
2014-05-28 02:35:35
阅读次数:
241
webkit在绘制页面时会将结构分为各种层,当层足够大时就会变成很大的平铺层。这样一来webkit在每次页面结构发生变化时不需要都渲染整个页面而是渲染对应层了,这对渲染速度来说相当的重要。webkit会给各种层分配一定大小的“后备存储器”在内存里缓存起来,这就是绘制层的上下文,通过这个上下文就可以很...
分类:
移动开发 时间:
2014-05-28 01:50:48
阅读次数:
1191
在一个业务类有下列属性private SchedulerFactoryBeanscheduler;
public SchedulerFactory BeangetScheduler() { return scheduler; } public void
setS...
分类:
编程语言 时间:
2014-05-27 23:38:16
阅读次数:
1397
iOS5中,UIViewController新添加了几个方法:-
(void)addChildViewController:(UIViewController *)childController
NS_AVAILABLE_IOS(5_0);- (void) removeFromParentViewC...
分类:
其他好文 时间:
2014-05-27 16:07:35
阅读次数:
456
@interface K3ViewController :
UIViewController@end#import "K3ViewController.h"@interface K3ViewController
()@property (weak, nonatomic) IBOutlet UILab...
分类:
移动开发 时间:
2014-05-26 19:15:17
阅读次数:
259