//自定义section的头部- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ UIView *headerView = [[UIView alloc] initWith...
分类:
其他好文 时间:
2015-01-25 12:27:02
阅读次数:
191
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
这个是我们学习OC过程中出现的各种奇怪ERROR,具体ERROR分类还没想好,先做成合集吧。当然 我会尽量回忆学习C时出现的ERROR,也做一个合集。第一个ERRORform:旗木*卡卡西require:定义?个block,返回值为NSInteger,有两个参数,?个是 NSArray,?个是NSS...
分类:
其他好文 时间:
2015-01-17 12:30:58
阅读次数:
199
1:先遵守UIAlertViewDelegate
2:- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex==0) {
NSLog(@"你点击了取消");
}else
if (buttonIndex=...
分类:
移动开发 时间:
2015-01-15 16:05:32
阅读次数:
172
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
18:图片视图几种填充样式_imgView.contentMode = UIViewContentModeScaleAspectFill;如下:typedef NS_ENUM(NSInteger, UIViewContentMode) { UIViewContentModeScaleToFil...
分类:
移动开发 时间:
2015-01-09 16:57:36
阅读次数:
206
其实UIPickerView和UITableview的实现方法中,大致是相同的,就连作用都是一样的,只是运用在了不同的效果上而已,那么下面就记录几个方法就可以实现UIPickerView的效果:1、设置UIPickerView的列-(NSInteger)numberOfComponentsIn...
分类:
移动开发 时间:
2015-01-07 14:40:29
阅读次数:
185
①.实现方法: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
本文转载至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中,我们可以使用c中的数字数据类型,int、float、long等。它们都是基本数据类型,而不是对象。也就是说,不能够向它们发送消息。然后,有些时候需要将这些值作为对象使用。NSInteger、NSUInteger当你不知道程序运行哪种处理器架构时,你最好使用NSInteger,因为..
分类:
其他好文 时间:
2015-01-03 13:19:07
阅读次数:
153