思路:将NSObject转化为NSData,然后将NSData存入到Core Data中
现有两个自定义的类:Person和Birthday,都需要使用NSCoding,实现initWithCoder和encodeWithCoder两个方法。
Core Data实现
添加数据:
AppDelegate *appDelegate = [[UIApplication sharedApp...
分类:
移动开发 时间:
2014-11-04 19:39:23
阅读次数:
288
为了避免启动画面一闪就消失
在AppDelegate.m 中 修改如下
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary
*)launchOptions {
[NSThread
sleepForTimeInterval:2];
...
分类:
移动开发 时间:
2014-11-03 17:47:40
阅读次数:
191
AppDelegate.h
#import "AppDelegate.h"
#import "RootViewController.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launc...
分类:
其他好文 时间:
2014-11-02 09:32:00
阅读次数:
196
在AppDelegate.m中,设置根视图控制器
RootViewController.h
@interface RootViewController : UITabBarController
{
UIImageView *_selectedImg;
}
RootViewController.m
#import "RootViewController.h"
#import "Home...
分类:
其他好文 时间:
2014-11-02 09:31:35
阅读次数:
246
在AppDelegate.m中设置根视图控制器
MainTabbarController.h
@interface MainTabbarController : UITabBarController
{
UIImageView *_selectedImg;
UIView *_tabbarView;
}
- (void)showtabbar:(BOOL)show;
Main...
分类:
其他好文 时间:
2014-11-02 09:30:46
阅读次数:
231
AppDelegate.m
//
// AppDelegate.m
// Task5
//
// Created by lyb on 14-9-27.
// Copyright (c) 2014年 imac. All rights reserved.
//
#import "AppDelegate.h"
#import "FirstViewController.h"
#import "...
分类:
移动开发 时间:
2014-11-02 09:30:00
阅读次数:
182
在AppDelegate.m中设置根视图控制器
RootviewController.h
@interface RootTabbarController : UITabBarController
{
UIImageView *_selectedImg;
}RootviewController.m
#import "RootTabbarController.h"
#import "Ho...
分类:
其他好文 时间:
2014-11-02 09:27:24
阅读次数:
242
我们知道cocos2dx中可以由多个场景组成,那么我是如何来切换场景的呢首先我们先新建一个新的场景类,我推荐的方式是,在你工程的目录中找到一个classes的文件夹,里面有AppDelegate.cpp和AppDelegate.h还有HelloWorldScene.cpp和HelloWorldScene.h,我们需要做的就是把HelloWor..
分类:
其他好文 时间:
2014-11-02 00:42:20
阅读次数:
289
(1)在AppDelegate.m文件中将导航控制器设置为根控制器
RootViewController *rootCtrl = [[RootViewController alloc] init];
UINavigationController *navCtrl = [[UINavigationController alloc] initWithRootViewController:r...
分类:
其他好文 时间:
2014-11-01 17:49:33
阅读次数:
176
如题: 1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)application:(UIApplication *)a...
分类:
移动开发 时间:
2014-11-01 01:00:09
阅读次数:
172