码迷,mamicode.com
首页 >  
搜索关键字:Property    ( 8449个结果
OC-内存管理的一些要点
创建一个BOOK对象,对其属性进行声明 定义。 @property 属性声明 定义了对属性的赋值  -(void) dealloc 方法在对象销毁的时候进行调用; #import @interface Book : NSObject @property (nonatomic,assign) int price; @end #import "Book.h" @imp...
分类:其他好文   时间:2014-06-16 12:05:04    阅读次数:271
使用 IntraWeb (15) - 基本控件之 TIWEdit、TIWMemo、TIWText
TIWEdit //单行文本框, 通过 PasswordPrompt 属性可以作为密码框TIWMemo //多行文本框TIWText //相当于多行的 TIWLabel 或不能编辑的 TIWMemoTIWEdit 所在单元及继承链:IWCompEdit.TIWEdit 主要成员:property T...
分类:Web程序   时间:2014-06-15 23:05:42    阅读次数:275
C# 3.0的新特性
自动属性.之前定义属性的步骤: private filed + public property.现在的形式:int id{get;set;}.可以分别设置get/set的保护级别(protected/public/private/internal).系统自动生成一个private的字段,并暴露响应的...
分类:其他好文   时间:2014-06-15 22:00:59    阅读次数:228
IOS_多线程_售票
H:/1007/01_多线程_大任务_MainViewController.m// MainViewController.m // 多线程-01.大任务 // Created by apple on 13-10-7. #import "MainViewController.h" @interface MainViewController () @property (weak, nonatom...
分类:移动开发   时间:2014-06-15 20:14:40    阅读次数:250
js学习对象创建
Object.extend=function(destination, source) {for(varpropertyinsource) { destination[property]=source[property];}returndestination;}Prototype 对Object类进...
分类:Web程序   时间:2014-06-15 00:47:58    阅读次数:188
使用 IntraWeb (12) - 基本控件之 TIWGradButton、TIWImageButton
TIWGradButton、TIWImageButton 分别是有颜色梯度变化按钮和图像按钮.TIWGradButton 所在单元及继承链:IWCompGradButton.TIWGradButton 主要成员:property Style: TIWGradButtonStyle //这个 Sty....
分类:数据库   时间:2014-06-13 20:09:15    阅读次数:396
NSUserDefault 保存自定义对象
由于NSUserDefaults 不支持保存自定类,保存的对象需要实现NSCoding协议,不过自定的类型就算实现了NSCoding也不可以保存,可以通过以下方法实现://h文件#import @interface People : NSObject@property(nonatomic,copy)...
分类:其他好文   时间:2014-06-13 17:17:52    阅读次数:177
使用 IntraWeb (13) - 基本控件之 TIWLabel、TIWLink、TIWURL、TIWURLWindow
TIWLabel //TIWLink //内部链接TIWURL //外部链接TIWURLWindow //页内框架, 就是 TIWLabel 所在单元及继承链:IWCompLabel.TIWLabel 主要成员:property AutoSize: Boolean ...
分类:Windows程序   时间:2014-06-13 15:30:05    阅读次数:372
找最大独立集问题-Finding a Maximal Independent Set
独立集和最大独立集:A set of vertices I ? V is called independent if no pair of vertices in I is connected via an edge in G. An independent set is called maximal if by including any other vertex not in I, the independence property is violated....
分类:其他好文   时间:2014-06-10 06:30:03    阅读次数:369
IOS学习笔记 -- Segue、数据存储、UITabBarController
一. Segue1.Storyboard上每一根用来界面跳转的线,都是一个UIStoryboardSegue对象(简称Segue)每一个Segue对象,都有3个属性1>.唯一标识: @property (nonatomic, readonly) NSString *identifier;2>.来源控...
分类:移动开发   时间:2014-06-09 21:52:37    阅读次数:490
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!