码迷,mamicode.com
首页 >  
搜索关键字:nsinteger    ( 574个结果
TabviewCell的多分区实现
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{//返回两个分区 return 2;}-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSect....
分类:其他好文   时间:2014-10-24 20:33:09    阅读次数:142
Block系列2:Block内存管理
ViewController.h #import @interface ViewController : UIViewController { UIImage *_image; NSInteger _index; } @endViewController.m #import "ViewController.h" #import "Person.h" @interface...
分类:其他好文   时间:2014-10-23 14:26:57    阅读次数:161
ios关于图片拉伸的版本间的几种方法
1.iOS 5.0之前的做法- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight;2.iOS 5.0的做法- (UIImage *)resi...
分类:移动开发   时间:2014-10-21 15:11:45    阅读次数:175
objective-c保护属性
#import @interface ClassVirable : NSObject{ NSInteger year;//保护树形}@property int age;//不用在实现文件中写@synthesize age就会有setAge:和age方法了-(void)set:(NSIntege...
分类:其他好文   时间:2014-10-15 12:00:20    阅读次数:147
IOS--Day04---类与对象,继承 ,实例,属性,点语言
创建一个类需要两个部分:接口和实现-----.h 头文件 相当于接口@interface Aa: NSObject //基类{//成员变量声明//大括号内部,添加当前类属性 //字符串类型 NSString *name; //姓名 NSString是一个类 //整型类型 NSInteger...
分类:移动开发   时间:2014-10-14 20:28:49    阅读次数:213
objective-c 中数据类型之五 数值类(NSNumber及NSNumberFormatter)
聊聊NSNumber, NSNumber可以封装c中基本数据类型 char,int,long,float,BOOL,NSInteger,CGFloat等。...
分类:其他好文   时间:2014-10-13 11:35:29    阅读次数:252
NSArray方法亲测
#import NSInteger sortType(id st,id str,void *cha){ NSString *s1 = (NSString *)st; NSString *s2 = (NSString *)str; if(s1.length > s2.length) { retur.....
分类:其他好文   时间:2014-10-11 23:15:36    阅读次数:262
iOS 8.0 毛玻璃效果UIVisualEffect
随着iOS8.0和OS X 10.0的发布,大量的毛玻璃效果随处可见.    以前我们实现毛玻璃效果,更多是通过CGImage来实现.现在,XCode6中自带了实现这一效果的API.API如下: typedef NS_ENUM(NSInteger, UIBlurEffectStyle) { UIBlurEffectStyleExtraLight, UIBlurEffectSty...
分类:移动开发   时间:2014-10-09 15:26:58    阅读次数:192
Object-C中release的机制问题
今天写了如下的一段代码: for (NSInteger i = 0; i 10000000; i++) {         UIView * v = [[UIView alloc] init];         [v release]; }     NSLog(@"好了!"); 并且观测了内存,发现“好了”这个词打印出来之前,内存一直处于疯长阶段,在“好了”打印出来之后,内存...
分类:其他好文   时间:2014-10-07 13:33:33    阅读次数:105
IOS UITableView表格视图详解
IOS表格视图类UITableView实现的协议:UITableViewDataSource,UITableViewDelegate必须实现下面的3个方法:-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{return1;}-(NSInteger)tableView:(UITableView*)tableViewnumberOfRowsInSection:(NSInteger)secti..
分类:移动开发   时间:2014-09-26 20:08:09    阅读次数:214
574条   上一页 1 ... 50 51 52 53 54 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!