About In-App PurchaseIn-App Purchase allows you
to embed a store inside your app using the Store Kit framework. This framework
connects to the App Sto...
分类:
移动开发 时间:
2014-05-01 14:45:53
阅读次数:
519
开发环境: ExtJS4.2 eclipse indigo 开发步骤说明
这次主要使用extjs4的mvc模式创建viewport。籍此初步了解mvc模式的结构。 下图为项目结构: 重点是app的目录结构:
其中controller、model、store、view一般来说是必须存在的目录。 app...
分类:
Web程序 时间:
2014-05-01 11:29:10
阅读次数:
472
Designing Your App’s ProductsAproductis
something you want to sell in your app’s store. You create and configure
products in iTunes Connect, and your ...
分类:
移动开发 时间:
2014-05-01 06:25:43
阅读次数:
655
There are many examples out there demonstrating
how AngularJS and Web API can be used together but almost all of them are in
MVC, so I tried to implem...
分类:
移动开发 时间:
2014-04-30 21:19:35
阅读次数:
625
在着手研究Unity3D的游戏开发时,3D模型可以考虑从unity的assets store去获取,也可以从网上搜索下载,同时咱们也可以尝试下自己动手去做一些简单的模型。
这里就根据unity3d坦克大战教学视频,来制作一个简单的导弹模型:包含弹头,弹身,尾翼。其中,弹头,单身都是使用胶囊来实现,尾翼是使用多边形来实现。
一、制作弹体
打开3dmax后,右侧的工具栏中,选择“扩展基本体”,这...
分类:
其他好文 时间:
2014-04-29 13:13:22
阅读次数:
397
使用公钥登录OpenSSH2013年10月24日16:47 生成密钥对
我所知道的,有三种生成密钥对的工具,分别为GNU/Linux下的ssh-keygen命令、puttygen、SSH Secure Shell。
使用ssh-keygen生成密钥对 [root@ld365 ~]# ssh-keyg...
分类:
其他好文 时间:
2014-04-29 10:11:47
阅读次数:
615
Extjs加载Store是异步加载的,这有很多好处。但是当我们要在两个或多个不同的store加载完再执行一些操作时,异步加载就成了一个问题。在Stack
Overflow 等网站搜集并试用了几个处理方法,总结如下。1、自己定义一个组件 (From:http://stackoverflow.com/q...
分类:
Web程序 时间:
2014-04-29 09:18:47
阅读次数:
583
主调函数分配内存块;在被调用函数中使用;
//写一个函数,;写一个主函数,用被调用函数,求出字符串1.在字符串2中间出现过几次!
#define _CRT_SECURE_NO_WARNINGS
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
char mycount(char *myp, char *mysub, int *n)
{
...
分类:
其他好文 时间:
2014-04-27 22:33:20
阅读次数:
325
合并并且排序指针数组和二维数组里面存放的字符串用函数调用的格式,C里面的内存模型;
#define _CRT_SECURE_NO_WARNINGS
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
char **sortArray1Array2_01(char **pArray1, int nArray1Num, char(*pArray2)[30], int nArray2Num, int *nArray3Num)...
分类:
其他好文 时间:
2014-04-27 22:16:05
阅读次数:
411
#define _CRT_SECURE_NO_WARNINGS
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
/*
键值对(”key = valude”)字符串,在开发中经常使用
要求1:请自己定义一个接口,实现根据key获取valude;40分
要求2:编写测试用例。30分
要求3:键值对中间可能有n多空格,请去除空格30分
注意...
分类:
其他好文 时间:
2014-04-27 22:11:20
阅读次数:
488