码迷,mamicode.com
首页 >  
搜索关键字:nsinteger    ( 574个结果
UITableView SectionHeader 自定义section的头部
//自定义section的头部- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ UIView *headerView = [[UIView alloc] initWith...
分类:其他好文   时间:2015-01-25 12:27:02    阅读次数:191
IOS int NSInteger NSNumber区分
1.NSNumber 是一个类继承于NSValue 即一个基本数据类型的集合 包括chara signed or unsigned char, short int, int, long int, long long int, float, or double or as a BOOLNSNumber...
分类:移动开发   时间:2015-01-19 18:44:02    阅读次数:283
花式ERROR产品样本——OC部分(持续更新)
这个是我们学习OC过程中出现的各种奇怪ERROR,具体ERROR分类还没想好,先做成合集吧。当然 我会尽量回忆学习C时出现的ERROR,也做一个合集。第一个ERRORform:旗木*卡卡西require:定义?个block,返回值为NSInteger,有两个参数,?个是 NSArray,?个是NSS...
分类:其他好文   时间:2015-01-17 12:30:58    阅读次数:199
iOS中UIAlertView的点击响应事件
1:先遵守UIAlertViewDelegate 2:- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{     if (buttonIndex==0) {         NSLog(@"你点击了取消");     }else if (buttonIndex=...
分类:移动开发   时间:2015-01-15 16:05:32    阅读次数:172
OC设置器与访问器以及自定义初始化方法
1.Person.h#import<Foundation/Foundation.h>@interfacePerson:NSObject{NSString*_name;NSString*_sex;NSInteger_age;CGFloat_weight;CGFloat_height;}-(void)sayhi;//设置器专门给一个实例变量赋值的方法-(void)setName:(NSString*)name;-(void)setSex:(NSString*)sex;..
分类:其他好文   时间:2015-01-13 01:31:49    阅读次数:161
IOS客户端Coding项目记录(三)
18:图片视图几种填充样式_imgView.contentMode = UIViewContentModeScaleAspectFill;如下:typedef NS_ENUM(NSInteger, UIViewContentMode) { UIViewContentModeScaleToFil...
分类:移动开发   时间:2015-01-09 16:57:36    阅读次数:206
iOS UIPickerView的简单实用
其实UIPickerView和UITableview的实现方法中,大致是相同的,就连作用都是一样的,只是运用在了不同的效果上而已,那么下面就记录几个方法就可以实现UIPickerView的效果:1、设置UIPickerView的列-(NSInteger)numberOfComponentsIn...
分类:移动开发   时间:2015-01-07 14:40:29    阅读次数:185
【学习ios之路:Objective-C】数组,字符串,字典的总和练习
①.实现方法:13个人,3个人一组,用一个大数组来管理每一个分组. //1.原数组 NSArray *array = @[@1,@2,@3,@4,@5,@6,@7,@8,@9,@10,@11,@12,@13]; //2.原数组个数 NSInteger count = [array count]; ...
分类:移动开发   时间:2015-01-06 21:40:38    阅读次数:274
uitableview滚动到最后一行
本文转载至http://mrjeye.iteye.com/blog/1278521- (void)scrollTableToFoot:(BOOL)animated{ NSInteger s = [self.tableView numberOfSections]; if (s<1) return;.....
分类:其他好文   时间:2015-01-06 19:32:24    阅读次数:1448
Objective-C编程中的数字类型(NSInteger,NSUInteger,NSNumber)
在Objective-C中,我们可以使用c中的数字数据类型,int、float、long等。它们都是基本数据类型,而不是对象。也就是说,不能够向它们发送消息。然后,有些时候需要将这些值作为对象使用。NSInteger、NSUInteger当你不知道程序运行哪种处理器架构时,你最好使用NSInteger,因为..
分类:其他好文   时间:2015-01-03 13:19:07    阅读次数:153
574条   上一页 1 ... 44 45 46 47 48 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!