在AppDelegate.m文件中,创建视图控制器
#import "MAYAppDelegate.h"
#import "MAYViewController.h"
@implementation MAYAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(...
分类:
移动开发 时间:
2014-08-27 09:28:17
阅读次数:
238
在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协议中各个方法的作用
控制当前输入框是否能被编辑
- (BOOL)textFieldShouldBeginEditing:(UITextField
*)textField
当输入框开始时触发(获得焦点触发)
- (void)textFieldDidBeginEditing:(UITextField
*)textField
询问...
分类:
移动开发 时间:
2014-08-24 11:41:12
阅读次数:
218
错误信息:
[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
有时候要写一些OC的测试代码,只关系OC的语法功能等,不需要建立app工程的,如objective-c程序设计中的例子,不需要appdelegate,则可以建立一个空的工程1. 在xcode中选file -> new ->project2. next3. 输入product name之后 next就...
分类:
其他好文 时间:
2014-08-22 16:00:59
阅读次数:
207
//延展添加对象
@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
看过了这么多不同方向的应用,发现很多程序入门都是helloworldhelloworld是所有程序员的绝对初恋先看一下程序的运行结果吧然后就是他的工程代码工程的目录有两个 Classes:程序中的类 AppDelegate.h/cpp:Cocos2d-x程序框架 AppMacros.h:...
分类:
其他好文 时间:
2014-08-20 19:33:12
阅读次数:
269
在AppDelegate方法里,添加类方法+ (NSInteger)OSVersion;实现为+ (NSInteger)OSVersion{ static NSUInteger _deviceSystemMajorVersion = -1; static dispatch_once_t ...
分类:
移动开发 时间:
2014-08-20 12:12:22
阅读次数:
188