1、删掉工程中main.storyboard 后要删除plist文件中对应的键值,否则会报如下错误:Could not find a storyboard named 'Main' in bundle NSBundle2、删除main.storyboard后,需要在AppDelegate.m中初始化...
分类:
其他好文 时间:
2014-07-16 20:43:35
阅读次数:
151
三步即可实现启动程序时不显示状态栏,启动后显示1. 在Info.plish文件中,Key的最后一项,选择把View controller-based status bar appearance设置为NO2. 在AppDelegate.m文件中写如下代码1 // 此方法在启动完毕后调用2 - (BOO...
分类:
其他好文 时间:
2014-07-16 20:17:46
阅读次数:
189
动画隐藏UITabBarController与UINavigationController效果图:源码:AppDelegate.m//// AppDelegate.m// HideTabbar//// Copyright (c) 2014年 Y.X. All rights reserved./...
分类:
其他好文 时间:
2014-07-08 23:32:29
阅读次数:
205
ios -11.main.m 应用程序主入口2.UIApplicationMain函数 为App提供主入口点创建新的应用程序实例和它的委托 ,委托负责处理应用程序状态变更,并为那些变更提供响应3.main() ---> 应用程序委托(AppDelegate) ----> 视图控制器(UIViewCo...
分类:
移动开发 时间:
2014-07-08 23:18:50
阅读次数:
257
MqttFramework.h
#import
#import "MQTTClient.h"
#import "BusinessModuleProtocol.h"
#import "BusinessFramework.h"
#import "AppDelegate.h"
@interface MqttFramework : NSObject
{
BusinessFramework...
分类:
移动开发 时间:
2014-07-08 19:49:13
阅读次数:
186
这篇文章的游戏使用SpriteKit和Swift语言来完成。
SpriteKit是苹果自己的游戏引擎,更能贴合iOS系统底层的API,不过架构和实现上都是模仿了Cocos2D。所以使用上其实差别不大,不过SpriteKit更轻量级一些。
程序入口
main函数跟OC一样,将入口指向了appdelegate,而cocoa touch框架几乎跟OC一样,只不过用Swift重写了一...
分类:
其他好文 时间:
2014-07-08 17:05:59
阅读次数:
270
今天做社会化分享,被俩个恶心的问题搞了半天。sina 微博 要在void AppDelegate::applicationDidEnterBackground()中加入 CCDirector::sharedDirector()->stopAnimation(); SimpleAudioEngine....
分类:
其他好文 时间:
2014-07-02 22:19:49
阅读次数:
214
一、项目结构 一开始创建一个空的项目 二、主要代码 1、AppDelegate.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptio...
分类:
其他好文 时间:
2014-07-02 18:07:05
阅读次数:
174
UIWindow,UINavigationController与UIViewController之间的关系虽然每次你都用UINavigationController与UIWindow,但你不一定知道他们之间到底怎么运作的哦:)AppDelegate.h的代码RootViewController.m/...
3.1 CCDirector:大总管bool AppDelegate::applicationDidFinishLaunching()?{? //初始化导演类? CCDirector *pDirector=CCDirector::sharedDirector();? pDirector-]]>set...
分类:
其他好文 时间:
2014-06-30 11:59:57
阅读次数:
187