IOS学习:ios中的数据持久化初级(文件、xml、json、sqlite、CoreData)分类:ios开发学习2013-05-30 10:032316人阅读评论(2)收藏举报iOSXMLJSONSQLiteCoreData一、文件操作 1、因为应用是在沙盒(Sandbox)中的,在文件读写权限....
分类:
移动开发 时间:
2014-12-18 20:28:08
阅读次数:
386
关于iOS开发中遇到的各种难题,汇总了最全的解决方案,供参考...
分类:
移动开发 时间:
2014-12-09 10:37:56
阅读次数:
181
在动作表单中我们用很多按钮实现,在这里我们用到了UIActionsheetDelegate协议中的actionSheet:clickedButtonAtIndex:方法实现,其语法形式如下:
- (void)actionSheet:(UIActionSheet*)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
其中,(UIAct...
分类:
移动开发 时间:
2014-12-04 14:03:20
阅读次数:
226
在这里我用到了视图库里的Navigation Controller导航控制器。
提醒操作主要用到了UIAlertviewDelegate协议中的alertView:clickButtonAtIndex:方法实现,其语法形式如下:
- (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)butto...
分类:
移动开发 时间:
2014-12-03 19:20:13
阅读次数:
247
(1)创建一个项目telephoneBook
(2)打开Main.storyboard文件,从视图库图拖一个Tab bar Controller标签栏控制器到画布中。
(3)在工具栏中,选择show the Attributes inspector图标,在View controller下,选择Is Initial View Controller。
(4)将画布中的原有的view cont...
分类:
移动开发 时间:
2014-12-03 12:32:10
阅读次数:
213
动态创建标签栏控制器就不说了,就是从视图库中托一些控件,这里要用到得是Tab Bar Controller,然后创建两个插座变量跟拖的控件进行关联。现在我们主要讲一下怎么对Tab Bar Controller进行设置:
(1)设置条目标题
self.title = @"第一个视图";
[self.tabBarItem setTitleTextAttributes:[NSDictiona...
分类:
移动开发 时间:
2014-12-02 20:52:54
阅读次数:
269
选择菜单栏中得File|New|File...命令,选择Property List,创建一个1.plist文件在桌面
核心代码:
#import
@interface ViewController : UIViewController{
NSDictionary *list;
NSArray *a;
}
@end
#import "ViewController....
分类:
移动开发 时间:
2014-12-01 19:20:34
阅读次数:
201
直接上代买吧:
@implementation ViewController
- (void)viewDidLoad {
a = [NSArray arrayWithObjects:@"ant",@"alpaca",@"albatross", nil];
b = [NSArray arrayWithObjects:@"badger",@"bat",@"bear", nil];
...
分类:
移动开发 时间:
2014-12-01 17:36:24
阅读次数:
148