码迷,mamicode.com
首页 >  
搜索关键字:objectatindex    ( 88个结果
NSArray用法
//类方法初始化一个数组对象 [array count] : 得到这个数组对象的长度。 [array objectAtIndex index]: 传入数组的索引(index) 得到数据对象。 [arrayWithObjects: …] :向数组对象初始化赋值。这里可以写任意...
分类:其他好文   时间:2015-05-02 17:55:24    阅读次数:83
ios获取剩余存储空间
ios获取存储空间   转载▼ -(void)usedSpaceAndfreeSpace{     NSString* path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0] ;     NSFileManager...
分类:移动开发   时间:2015-04-30 10:44:26    阅读次数:142
文件创建 数据写入 读取 删除
// 创建文件路径   (有三种沙盒路径,根据需求 请自选)  NSArray * paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);     NSString * cachPath = [[paths objectAtIndex:0]stringByAppe...
分类:其他好文   时间:2015-04-27 18:25:20    阅读次数:116
sandBoxPathFile
//获得本应用程序的沙盒目录 NSArray *array=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *path=[array objectAtIndex:0.....
分类:数据库   时间:2015-04-22 22:07:58    阅读次数:159
iOS层级跳转(UINavigationController跳转返回到指定的页面)
[self.navigationController pushViewController:[self.navigationController.viewControllers objectAtIndex:i] animated:YES];i 就是你所要到得页面在总的页面的位置。当页面比较多时,上面那个方法可能不太合适,可以使用以下方法for (UIViewController *controll...
分类:移动开发   时间:2015-04-03 09:34:45    阅读次数:141
iOS 数组越界 Crash处理经验
彻底解决数组越界 -[__NSArrayI objectAtIndex:]: index 100 beyond bounds [0 .. 1]' 错误。...
分类:移动开发   时间:2015-04-02 13:30:43    阅读次数:180
人人界面按钮,页面跳转,传值(练习)
OtherViewController *ovc=[[OtherViewController alloc]init]; ovc.navigationItem.title=[nameArr objectAtIndex:sender.tag-100]; [self.navigationControll...
分类:其他好文   时间:2015-03-20 21:47:35    阅读次数:200
iOS UIWebView
关于UIWebView的一些事: http://www.cocoachina.com/applenews/devnews/2012/1123/5167.html 1:禁止UIWebView有拖动惯性[(UIScrollView *)[[self.webView subviews] objectAtIndex:0] setBounces:NO]; 以下适用于iOS5.0以上[detailPap...
分类:移动开发   时间:2015-03-10 17:26:11    阅读次数:151
文件路径 封装常用代码
-(NSString *)filePath{ NSString *docPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDirectory, YES)objectAtIndex:0]; NSString.....
分类:其他好文   时间:2015-03-09 10:47:22    阅读次数:137
IOS--常用控件--UISearchBar和UISearchDisplayController
一、UISearchBar单独使用时,设置样式:UIView *view =[mySearchBar.subviews objectAtIndex:0]; // view.backgroundColor =[UIColor clearColor]; for (UIView *backview ...
分类:移动开发   时间:2015-03-04 16:12:23    阅读次数:153
88条   上一页 1 ... 4 5 6 7 8 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!