重新想象 Windows 8.1 Store Apps 之新增控件: AppBar -
应用程序栏控件(新增了 AppBarButton, AppBarToggleButton, AppBarSeparator), CommandBar -
应用程序栏控件(AppBar 简化版)
分类:
移动开发 时间:
2014-05-09 18:36:41
阅读次数:
502
var grid=Ext.getCmp("GridPanel1"); var store =
grid.getStore(); Ext.Ajax.request({ url:"server/grid.json", par...
分类:
Web程序 时间:
2014-05-09 18:09:47
阅读次数:
484
转自:dApps开发者?APP被苹果App
Store拒绝的79个原因(未完待续)1、程序有重大bug,程序不能启动,或者中途退出。2、绕过苹果的付费渠道,我们之前游戏里的用兑换码兑换金币。3、游戏里有实物奖励的话,一定要说清楚,奖励由本公司负责,和苹果没有关系。4、用到苹果的标志。(应用的设计和A...
分类:
移动开发 时间:
2014-05-09 12:41:38
阅读次数:
542
首先确定帐号是否能发布,https://developer.apple.com/account,如果你打开Provisioning
Portal,然后点击DisTribution看到的是下图中那样,再考虑按下面的方法弄(1)图中加号是灰色,点击图中的加号,没有反应,说明你的帐号不能发布,找你们老大要...
分类:
移动开发 时间:
2014-05-09 12:34:49
阅读次数:
656
GCD (Grand Central Dispatch)
是Apple公司开发的一种技术,它旨在优化多核环境中的并发操作并取代传统多线程的编程模式。在Mac OS X 10.6和IOS
4.0之后开始支持GCD。使用GCD的一个理由就是方便。回想一下以前的多线程编程,我们会把异步调用的代码放到另外的...
分类:
其他好文 时间:
2014-05-09 11:05:26
阅读次数:
301
先看看apple官网简述:registerNib:forCellWithReuseIdentifier:Register
a nib file for use in creating new collection view cells.-
(void)registerNib:(UINib *)nib...
分类:
移动开发 时间:
2014-05-08 20:17:35
阅读次数:
752
###UITextField基本知识###[UITextField](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextField_Class/Reference/UITextField.html)...
分类:
移动开发 时间:
2014-05-08 20:15:11
阅读次数:
372
主要功能:实现 网页离线加载。基本思想来源于AFCache。作者是Rob
Napier(IOSX Programming的作者)。使用方法:To build, you will need the Reachability code
from Apple (included). That requir...
分类:
其他好文 时间:
2014-05-04 20:32:05
阅读次数:
1699
dict={"a":"apple","b":"banana","o":"orange"} print
"##########dict######################" for i in dict: print "dict[%s]=" %
i,dict[i] print...
分类:
编程语言 时间:
2014-05-04 20:13:19
阅读次数:
401
ArraysArrays are zero-indexed, ordered lists of
values. They are a handy way to store a set of related items of the same type
(such as strings), thoug...
分类:
编程语言 时间:
2014-05-04 19:08:29
阅读次数:
533