码迷,mamicode.com
首页 >  
搜索关键字:appdelegate    ( 1028个结果
通过两个触摸点实现视图的缩放(iOS)
在AppDelegate.m文件中,创建视图控制器 #import "MAYAppDelegate.h" #import "MAYViewController.h" @implementation MAYAppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(...
分类:移动开发   时间:2014-08-27 09:28:17    阅读次数:238
cocos2dx 3.2 VS可以运行的代码移到eclipse代码报错
在VS中可以正常运行的代码,放到Eclipse中报undefined reference错误,解决办法,要在Android.mk中声明LOCAL_SRC_FILES := hellocpp/main.cpp \ ../../Classes/AppDelegate....
分类:系统相关   时间:2014-08-26 00:15:45    阅读次数:242
计算器的实现代码
#import "AppDelegate.h" @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {     sel...
分类:其他好文   时间:2014-08-24 14:13:32    阅读次数:234
UITextFieldDelegate协议中各个方法的作用与Xcode中AppDelegate.m中自动生成各个方法的作用(iOS)
UITextFieldDelegate协议中各个方法的作用 控制当前输入框是否能被编辑 - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField 当输入框开始时触发(获得焦点触发) - (void)textFieldDidBeginEditing:(UITextField *)textField 询问...
分类:移动开发   时间:2014-08-24 11:41:12    阅读次数:218
jni/../../Classes/AppDelegate.cpp:102: error: undefined reference to 'TestController::TestController
错误信息: [armeabi] SharedLibrary  : libcocos2dcpp.so E:/Android/android-ndk-r9d/toolchains/arm-linux-androideabi-4.6/prebuilt/windows/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-andr...
分类:移动开发   时间:2014-08-23 17:47:21    阅读次数:376
Xcode新建OC的空工程
有时候要写一些OC的测试代码,只关系OC的语法功能等,不需要建立app工程的,如objective-c程序设计中的例子,不需要appdelegate,则可以建立一个空的工程1. 在xcode中选file -> new ->project2. next3. 输入product name之后 next就...
分类:其他好文   时间:2014-08-22 16:00:59    阅读次数:207
实现霓虹灯闪烁效果(UI)
//延展添加对象 @interface AppDelegate () {     UIView *_containerView;     NSTimer *_timer; } @end //- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictiona...
分类:其他好文   时间:2014-08-22 14:35:37    阅读次数:260
创建简易计算器
@interface AppDelegate () { UIView *_containerView; UILabel *_lable; CGFloat _fristNum; CGFloat _secondNum; NSInteger _tempNum; NSMutableString *_str; } @end...
分类:其他好文   时间:2014-08-22 10:58:46    阅读次数:270
cocos2d-x 3.0的入门程序:helloworld
看过了这么多不同方向的应用,发现很多程序入门都是helloworldhelloworld是所有程序员的绝对初恋先看一下程序的运行结果吧然后就是他的工程代码工程的目录有两个 Classes:程序中的类 AppDelegate.h/cpp:Cocos2d-x程序框架 AppMacros.h:...
分类:其他好文   时间:2014-08-20 19:33:12    阅读次数:269
判断ios版本
在AppDelegate方法里,添加类方法+ (NSInteger)OSVersion;实现为+ (NSInteger)OSVersion{ static NSUInteger _deviceSystemMajorVersion = -1; static dispatch_once_t ...
分类:移动开发   时间:2014-08-20 12:12:22    阅读次数:188
1028条   上一页 1 ... 93 94 95 96 97 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!