1.图片的处理,CoreImage添加CoreImage的属性,并生成synthesize@property
(nonatomic,strong) CIContext *context;@property (nonatomic,strong) CIFilter
*filter1;@property ...
分类:
其他好文 时间:
2014-07-22 23:14:15
阅读次数:
369
iOS6 and Later改变UITextField 中占位符
提示文本的文字颜色在新版本中(iOS6以后)iOS提供一种 Key = value 属性的方式,来改变UI的属性内容。以UITextField为例
@property(nonatomic,copy) NSAttributedStri....
分类:
其他好文 时间:
2014-05-15 22:43:48
阅读次数:
436
首先创建一个viewController:一、添加地图1、添加MapKit,CoreLocation框架2、初始化地图视图:@property
(nonatomic, strong) MKMapView *mapView; self.mapView =[[MKMapView
alloc]initW....
分类:
移动开发 时间:
2014-05-15 17:28:10
阅读次数:
348
@interface Person : NSObject@property (nonatomic,
copy) NSString *name;@end @interface Student :
Person@end1.Student类无法使用_name来访问Person中属性name,因为当使用@p...
分类:
其他好文 时间:
2014-05-09 08:20:33
阅读次数:
268
如下图:
从user_logs表格select出来的数据放在一个可变数组NSMutableArray中,如 user_logs,现在要
把数据一条条转化为Userlog databean,UserLog定义如下:
@interface UserLog : NSObject
@property(strong,nonatomic) NSString * logId;
@property(...
分类:
数据库 时间:
2014-05-09 01:02:22
阅读次数:
373
UIView的常见属性 1 @property(nonatomic,readonly)
UIView *superview; 2 获得自己的父控件对象 3 4 @property(nonatomic,readonly,copy) NSArray
*subviews; 5 获得自己的所有子控件对象.....
分类:
其他好文 时间:
2014-05-02 14:53:07
阅读次数:
249
@interface DemoObj()@property (nonatomic, strong)
NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self =
[super init]; ...
分类:
移动开发 时间:
2014-05-01 20:28:37
阅读次数:
917
//要实现UIWebViewDelegate代理@interface
TestViewController : UIViewController{ UIWebView *protWebView;}@property
(retain, nonatomic) IBOutletUIWebView *pr....
分类:
移动开发 时间:
2014-05-01 15:13:29
阅读次数:
420
主要需要注意的几个问题: 1.导入图片方式最好用文件导入 代码:
在ViewController.m文件中 2.UILable常用属性 @property(nonatomic,copy) NSString *text;
//设置文本内容 @...
分类:
移动开发 时间:
2014-04-29 22:28:37
阅读次数:
616
arc其实并不是所谓的垃圾回收机制,其实arc只是编译器的一种特性,编译器会在编译阶段插入相应的内存管理代码,以实现自动的内存管理,这样就减少了因为程序员的一时疏忽或者项目过大而失误从而造成内存泄露,因为是编译器自动完成的代码插入所以arc的效率要高于垃圾回收机制.在arc机制下dealloc中会由...
分类:
其他好文 时间:
2014-04-28 11:50:10
阅读次数:
463