把图片存到相册中-(void)savaPicAction{
UIImageWriteToSavedPhotosAlbum(_imageView.image,nil,nil,nil); UIAlertView* alert
= [[UIAlertViewalloc]initWithTitle:nil....
分类:
移动开发 时间:
2014-05-18 20:16:47
阅读次数:
339
性质导致了强约束,也导致了O(lgn)的高度性质1. 节点是红色或黑色。性质2.
根是黑色。性质3. 所有叶子都是黑色(叶子是NIL节点)。性质4.
每个红色节点的两个子节点都是黑色。(从每个叶子到根的所有路径上不能有两个连续的红色节点)性质5. 从任一节点(不包括该节点)到其每个叶子的所有简单路径...
分类:
其他好文 时间:
2014-05-17 18:52:12
阅读次数:
397
NSArray、NSSet、NSDictionary 集合类
可以用来装东西OC数组只能存放OC对象、不能存放非OC对象类型,如int、struct\enu等OC数组不能存放nil值1.NSArray 不可变数组1》.
NSArray *array1 = [NSArray array]; // 由....
分类:
其他好文 时间:
2014-05-15 10:23:07
阅读次数:
253
-(id)initWithTitle:(NSString*)titlemessage:(NSString*)messagedelegate:(id)delegatecancelButtonTitle:(NSString*)cancelButtonTitleotherButtonTitles:(NSString*)otherButtonTitles,...NS_REQUIRES_NIL_TERMINATION;关于多参数的接法;va_listargumentList;NSMutableArra..
分类:
其他好文 时间:
2014-05-15 08:44:11
阅读次数:
199
1UIAlertView类似于Android中的Dialog,简单用法如下:UIAlertView*alertView=[[UIAlertViewalloc]initWithTitle:@"Title"message:@"Messate"delegate:nilcancelButtonTitle:@"Cancle"otherButtonTitles:nil,nil];[alertViewshow];2UIActionSheet底部弹出的对话框,较常用,简..
分类:
移动开发 时间:
2014-05-14 16:24:55
阅读次数:
332
- (void) networkReachabilityDidUpdate:(NetworkReachability*)reachability
{
[NSObject cancelPreviousPerformRequestsWithTarget:self selector:@selector(reachabilityChanged) object:nil];
...
分类:
其他好文 时间:
2014-05-13 08:17:19
阅读次数:
219
1.加载JSON文件a.JSON文件的路径NSString *path = [[NSBundle
mainBundle] pathForResource:@"XXXX.json" ofType:nil];b.加载JSON文件 获取Data数据NSData
*data = [NSData dataWi...
分类:
Web程序 时间:
2014-05-12 09:20:20
阅读次数:
284
调用一次计时器方法:myTimer = [NSTimer
scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(scrollTimer)
userInfo:nil repeats:NO]; //不重复,只调用一次。tim....
分类:
移动开发 时间:
2014-05-09 08:50:29
阅读次数:
473
程序运行时候崩溃,提示object cannot be nil
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
提示如上面。
请问怎么解决...
分类:
其他好文 时间:
2014-05-09 01:31:55
阅读次数:
558