码迷,mamicode.com
首页 >  
搜索关键字:nsinteger    ( 574个结果
iOS8自带模糊效果
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {     UIBlurEffectStyleExtraLight,     UIBlurEffectStyleLight,     UIBlurEffectStyleDark } NS_ENUM_AVAILABLE_IOS(8_0); UIBlurEffect *blurEffe...
分类:移动开发   时间:2014-09-19 15:37:45    阅读次数:272
IOS 用drawRect 画表格
自定义一个View DrawLineDrawLine.h#import @protocol gridTouchDelete - (void)gridTouchColumn:(NSInteger)column touchRow:(NSInteger)row;@end@interface DrawLin...
分类:移动开发   时间:2014-09-10 15:38:50    阅读次数:230
UITableView的常用代理方法
//设置行高-(CGFloat)tableView:(UITableView*)tableViewheightForRowAtIndexPath:(NSIndexPath*)indexPath{return80;}//分区-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{//Returnthenumberofsections.return3;}//设置每个区有多少行共有多少行-(NSInteg..
分类:其他好文   时间:2014-09-04 11:59:50    阅读次数:221
int和NSInteger区别
查到c语言中,int和long的字节数是和操作系统指针所占位数相等。但c语言中说,long的长度永远大于或等于intobjective-c里,苹果的官方文档中总是推荐用NSInteger它和int有什么区别呢,stackoverflow这帮大神给了答案。原来在苹果的api实现中,NSInteger是...
分类:其他好文   时间:2014-09-02 15:35:34    阅读次数:139
NSNumber与NSInteger的区别
Objective-C 支持的类型有两种:基本类型 和 类。基本类型,如同C 语言中的 int 类型一样,拿来就可以直接用。 而类在使用时,必须先创建一个对象,再为对象分配空间,接着做初始化和赋值。 类的初始化,需用类自身的方法 (类方法)。 代码中所创建的对象,不用后,还得记着释放。做了这么多铺....
分类:其他好文   时间:2014-09-02 00:11:13    阅读次数:236
回调中释放自己会不会导致崩溃?
比如- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{ [self.pickerViewremoveFromSuperview]; .....
分类:其他好文   时间:2014-08-29 17:59:28    阅读次数:222
移除array中重复的item
//move the repeated item NSInteger index = [orignalArray count] - 1; for (id object in [orignalArray reverseObjectEnumerator]) { if ([orignalArray ind...
分类:其他好文   时间:2014-08-29 12:47:57    阅读次数:154
iOS7_ios7_如何实现UIAlertView以及监听点击事件(其它样式)_如何修改UITextField默认键盘样式
首先我们知道,UIAlertView实际上有多种样式,在xcode中,按住cmd点击UIAlertView,进入头文件我们看到:1 typedef NS_ENUM(NSInteger, UIAlertViewStyle) {2 UIAlertViewStyleDefault = 0, //默...
分类:移动开发   时间:2014-08-24 19:16:03    阅读次数:338
对不同类型assgin,retain,和copy内部实现的方法
.h文件。。。。。。。@interfacebook:NSObject /*{ NSString*_bookName;//书名 CGFloat_bookThickness;//厚度 NSString*_bookType;//书类型 NSInteger_bookPrice;//书价格 NSString*_publishingHouse;//出版社 NSString*_publishintTime;//出版时间 }*///在@property里面,其..
分类:其他好文   时间:2014-08-23 19:11:51    阅读次数:150
【IOS】int,NSInteger,NSUInteger,NSNumber
1.当需要使用int类型的变量的时候,可以像写C的程序一样,用int,也可以用NSInteger,但更推荐使用NSInteger,因为这样就不用考虑设备是32位的还是64位的。2.NSUInteger是无符号的,即没有负数,NSInteger是有符号的。3.有人说既然都有了NSInteger等这些基...
分类:移动开发   时间:2014-08-22 15:44:20    阅读次数:175
574条   上一页 1 ... 51 52 53 54 55 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!