码迷,mamicode.com
首页 >  
搜索关键字:Property    ( 8449个结果
属性细节
默认情况下,对象属性是strong的,标量属性是assign的。但是有一个例外,就是对于具有可变副本的属性,我们倾向于将其声明为copy。比如说@interface Person : NSObject@property (nonatomic,copy) NSString* name; @proper...
分类:其他好文   时间:2014-06-29 07:54:44    阅读次数:444
Yii Active Record 动态数据表
Active Record(AR)是一种流行的 对象-关系映射(ORM)技术,其映射关系为 AR class:数据表AR class property:数据表的一列AR 实例:数据表的一条数据 所以对于常用的数据库操作(CRUD)可以转化成一种面向对象的数据操作形式。 实现一个AR类的的最简代码如下: class Post extends CActiveRecord { ...
分类:其他好文   时间:2014-06-20 10:42:47    阅读次数:245
CSS跨浏览器(转)
本文将介绍兼容IE+、FF、Chrome、Safari、Opera的技巧一、CSS HACK专门为某版本的浏览器设置样式,从而解决浏览器显示的差异selector { +property:value; } 在属性名前加上加号"+",这个Hack只有IE系列可以识别.selector { *prope...
分类:Web程序   时间:2014-06-06 22:37:35    阅读次数:385
UINavigationController的子控制器
?UINavigationController以栈的形式保存子控制器@property(nonatomic,copy)NSArray*viewControllers;@property(nonatomic,readonly)NSArray*childViewControllers;?使用push方法...
分类:其他好文   时间:2014-06-06 20:03:23    阅读次数:310
iOS.UIKit.14.UITableView -- UISearchBar
1、案例介绍:一个具备搜索功能的表视图,如图01,02,03图01图02图032、Main.storyboard,如图04图043、.h#import @interface CQ23ViewController : UITableViewController// 搜索栏@property (weak...
分类:移动开发   时间:2014-06-06 14:45:32    阅读次数:326
iOS.UIKit.17.UITableView -- Cells Operation
1、案例介绍:表视图中单元格的增加、删除、移动,如图01,02图01图022、.h#import @interface CQ26ViewController : UIViewController@property (weak,nonatomic) IBOutlet UINavigationItem ...
分类:移动开发   时间:2014-06-06 14:21:33    阅读次数:340
unrecognized selector sent to instance
[iOS] Error Fixed : [__NSArrayI addObject:]: unrecognized selector sent to instance当我创建了一个NSMutableArray 对象的时候@property(nonatomic,copy)NSMutableArray*...
分类:其他好文   时间:2014-06-06 08:18:29    阅读次数:291
iOS: 属性列表介绍 Introduction to Property Lists
iOS: 属性列表介绍 Introduction to Property Lists从本质上说, 属性列表就是苹果的对象数据序列化与反序列化方式属性列表使用几种数据类型把数据组织为键值表和值表 Property lists organize data into named values and li...
分类:移动开发   时间:2014-06-04 17:09:32    阅读次数:274
利用put上传文件到服务器
#import "KUViewController.h"#import "KUProgress.h"@interfaceKUViewController ()//下载进度的类,继承UIview@property (weak, nonatomic) IBOutlet KUProgress *progr...
分类:其他好文   时间:2014-06-04 14:39:23    阅读次数:328
JavaScript Patterns 3.5 JSON
The only syntax difference between JSON and the object literal is that property names need to be wrapped in quotes to be valid JSON. In object literal...
分类:编程语言   时间:2014-06-02 09:31:41    阅读次数:394
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!