Objective-C 支持的类型有两种:基本类型和类。基本类型,如同 C 语言中的 int 类型一样,拿来就可以直接用。而类在使用时,必须先创建一个对象,再为对象分配空间,接着做初始化和赋值。类的初始化,需用类自身的方法(类方法)。代码中所创建的对象,不用后,还得记着释放。NSNumber 是类,...
分类:
其他好文 时间:
2015-01-01 21:13:44
阅读次数:
191
1.1 加载:UITableViewCell 的加载需要遵守UITableViewDataSource数据源协议中的三个方法:@protocol UITableViewDataSource@required- (NSInteger)tableView:(UITableView *)tableView...
分类:
其他好文 时间:
2015-01-01 01:23:03
阅读次数:
277
1.创建字符串对象 //(1)使用初始化方法 NSInteger number = 10; NSString *str = @"Frank"; NSString *str1 = [[NSString alloc] initWithFormat:@"lanou%ld%@", number, str]....
分类:
其他好文 时间:
2014-12-30 14:54:42
阅读次数:
219
NSData,NSImage,NSDictionary,NSString,NSInteger,Float,NSURL 等等互相转换一:NSString和NSURL 转换[cpp]view plaincopyprint?//NSString->NSURLNSString*urlString=[@"ht...
分类:
Web程序 时间:
2014-12-27 11:23:17
阅读次数:
184
例1、 从服务器段获取到的字符串转化为时间如:转化1416882712000
//网络请求获取的数据
NSString *time = [NSStringstringWithFormat:@"%@",[[dateListobjectAtIndex:indexPath.row]gradeDate]];
NSInteger num = [time integerValue]/1000;(重点)
NSDateFormatter *formatter = [[[NSDateFormatteralloc] ...
分类:
移动开发 时间:
2014-12-26 21:42:13
阅读次数:
217
UIView的层介绍
subview在西安市到屏幕上时,是位于superview上层的。
同一个view的subview时按照加入的顺序显示对应层的,越晚加入的subview显示在越上层,反之也是如此。
用superview可以直接管理subview的层。
-(void)insertSubview:(UIView *)view atIndex:(NSInteger)index;
//插入...
分类:
其他好文 时间:
2014-12-24 00:07:58
阅读次数:
176
assign: 对基础的数据类型,比如NSInteger和C数据类型(int,float,char)等copy: 针对NSStringretail: 针对NSObject及其子类nonatomic:单线程,防止在写未完成的时候被另外一个线程读取,造成数据读取错误weak: 它所指向的对象一旦...
分类:
其他好文 时间:
2014-12-22 15:46:53
阅读次数:
166
头文件:@interface MyAlertViewViewController : UIViewController {}- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;-...
分类:
其他好文 时间:
2014-12-22 12:42:06
阅读次数:
121
设计好后运行发现没有任何变化,是空白的。这是因为你的tableview相关的delegate方法还在。所以首先要屏蔽或者删除在PlayerDetailsViewController.m 如下的操作#pragma mark - Table view data source- (NSInteger)nu...
分类:
其他好文 时间:
2014-12-19 15:41:36
阅读次数:
170
+ (BOOL)isBetweenFromHour:(NSInteger)fromHour toHour:(NSInteger)toHour{ NSDate *dateFromHour = [self getCustomDateWithHour:fromHour]; NSDate *da...
分类:
其他好文 时间:
2014-12-19 12:57:38
阅读次数:
178