UITableView表视图编辑表视图编辑的使用场景当我们需要手动添加或者删除某条数据到tableView中的时候,就可以使用tableView编辑.比如微信 扣扣中删除和某人的通话当我们需要手动调整单元格的顺序时,就可以通过tableView移动,移动单元格到指定位置代理AppDelegate.m...
分类:
其他好文 时间:
2014-07-23 11:35:06
阅读次数:
327
2014-07-16
环境:Cocos2dx 2.2.4
AppDelegate.cpp中FPS设置为 60
pDirector->setAnimationInterval(1.0 / 60);
问题:在两台Android机器上跑。 两台的FPS不一样
I9100: 4.0系统,FPS 约60,(修改FPS为30,也会改变)
S5700:...
分类:
移动开发 时间:
2014-07-18 21:33:34
阅读次数:
305
AppDelegate.m部分- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWin...
分类:
其他好文 时间:
2014-07-18 21:16:44
阅读次数:
213
—————————————集成—————————————1. 导入框架包2.Appdelegate.m 中做配置 1)#import"UMSocial.h"//友盟SDK #import"UMSocialWechatHandler.h"//微信SDK #import"UMSocial...
分类:
其他好文 时间:
2014-07-18 16:20:41
阅读次数:
187
第一步 AppDelegate中引用导航器,并设置根视图,同时隐藏导航栏- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ...
分类:
其他好文 时间:
2014-07-18 14:31:38
阅读次数:
259
LOCAL_PATH:=$(callmy-dir)include$(CLEAR_VARS)#编译库的名称LOCAL_MODULE:=cocos2dcpp_shared#编译库的文件名LOCAL_MODULE_FILENAME:=libcocos2dcpp#包含的源文件LOCAL_SRC_FILES:=hellocpp/main.cpp\../../Classes/AppDelegate.cpp\../../Classes/Card.cpp\../../Classes/Ga..
分类:
移动开发 时间:
2014-07-17 19:33:26
阅读次数:
286
#import "AppDelegate.h"#import "FisrtViewController.h"@interface AppDelegate () @end@implementation AppDelegate - (BOOL)applicat...
分类:
其他好文 时间:
2014-07-16 18:16:12
阅读次数:
156
修改代码:AppDelegate.cpp// set FPS. the default value is 1.0/60 if you don't call thispDirector->setAnimationInterval(1.0/30);还有就是:Cocos2dxRenderer.java//...
分类:
其他好文 时间:
2014-07-14 23:16:29
阅读次数:
592
新建一个工程,关闭ARC , AppDelegate.h 中window属性strong改成retain APPDelegate.m中window 初始化时加autorelease 上面重写dealloc方法建一个UIViewController 的子类RootViewController 把...
分类:
其他好文 时间:
2014-07-14 00:37:12
阅读次数:
260
建三个UIViewController 的子控制器,其中一个为根控制器,另外两个控制器的视图作为切换对象AppDelegate中代码//AppDelegate.h中代码#import @interface AppDelegate : UIResponder @property (retain, no...
分类:
其他好文 时间:
2014-07-13 23:15:04
阅读次数:
284