码迷,mamicode.com
首页 >  
搜索关键字:appdelegate    ( 1028个结果
iOS 登录功能的实现
#import "AppDelegate.h" 中- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override p....
分类:移动开发   时间:2015-12-15 20:58:09    阅读次数:199
Rechability的简单使用
AppDelegate.m#import "AppDelegate.h"#import "Reachability.h"@interface AppDelegate ()@property (nonatomic, strong) Reachability *reachability;@end@imp...
分类:其他好文   时间:2015-12-15 18:01:29    阅读次数:176
【代码笔记】旋转的图片
一,效果图。二,工程图。三,代码。AppDelegate.h#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@endAppDelegate.m#import "Ap...
分类:其他好文   时间:2015-12-15 10:19:52    阅读次数:155
ppDelegate的相关介绍
// AppDelegate的相关介绍// IOS笔记//@interface AppDelegate : UIResponder //@property (strong, nonatomic) UIWindow *window;AppDelegate可处理的事件包括:1> 应用程序的生命周期事件(...
分类:其他好文   时间:2015-12-14 18:54:14    阅读次数:117
UIApplication的使用
//// UIApplication的使用// IOS笔记//// Created by **** on ****.// Copyright © 2013年 ***. All rights reserved.//UIApplication的代理方法基本上都是在AppDelegate里面进行实现的、以...
分类:移动开发   时间:2015-12-14 18:14:48    阅读次数:148
cocos2d-x增加控制台程序代码
#include "main.h"#include "AppDelegate.h"#include "CCEGLView.h"USING_NS_CC; #define USE_WIN32_CONSOLE //这里是控制台开关。是否打开控制台int APIENTRY _tWinMain(HINST.....
分类:其他好文   时间:2015-12-12 21:51:54    阅读次数:206
Mac 应用开发-- 在菜单栏中实现退出应用的功能
在AppDelegate中,对menu Item 拖线 实现退出应用的方法:- (IBAction)windowShouldClose:(NSMenuItem *)sender { [NSApp terminate:self];}如下图:
分类:系统相关   时间:2015-12-10 13:00:48    阅读次数:352
iOS 图片循环滚动(切片效果)
#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "Root...
分类:移动开发   时间:2015-12-09 19:04:50    阅读次数:445
Bmob 之 简单使用
1. pod pod 'BmobSDK' 与pod "BmobSDK" 好像没什么区别2. 导入 在AppDelegate中:#import [Bmob registerWithAppKey:@"申请的Application ID"];3. 数据处理3.1. 添加//往GameScore表添加一.....
分类:其他好文   时间:2015-12-09 13:40:08    阅读次数:293
ARC的原理详解
1,ARC的本质ARC本质是NSAutoreleasePool的直接应用,@autorelease{return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));}其实是:NSAutorelease...
分类:其他好文   时间:2015-12-08 23:53:17    阅读次数:383
1028条   上一页 1 ... 33 34 35 36 37 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!