/**导航控制器掌握:1.创建导航控制器UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:self.viewController];2.zhan (zhan 中所有的子控制...
分类:
移动开发 时间:
2014-08-17 21:11:42
阅读次数:
210
有时候我们重写父类的init方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父类的初始化方法(self = [super init];)时会报错,错误信息如下:error:Cannot assign to 'self' outside of a method in the in...
分类:
其他好文 时间:
2014-08-17 16:58:52
阅读次数:
201
import sysclass mergesort(): def merge_sort(self, A, p, r): if p < r: q = (p + r) / 2 self.merge_sort(A, p, q) ...
分类:
编程语言 时间:
2014-08-17 15:30:52
阅读次数:
166
A computer-implemented method and apparatus in a computer system of processing data generated by a first application program in a second application p...
分类:
移动开发 时间:
2014-08-16 22:21:11
阅读次数:
345
分为两种情况:1. 想要隐藏某个视图的状态栏, 比如说, 从界面A, push 到界面B的时候, 界面A原本显示状态栏, 然而我们需要界面B不显示状态栏。这时候, 可以这样做:在B中实现:- (void)viewDidLoad
{
[super viewDidLoad];
if ([self respondsToSelector:@selector(setNeedsSta...
分类:
移动开发 时间:
2014-08-16 17:09:40
阅读次数:
220
昨儿利用python+win32com将网页的表单导出到本地excel,遇到了输出乱码问题,解决方法:将x改为x.decode('utf-8')setCall('sheet1',row,col,x.decode('utf-8'))我的部分源码:self.xlBook = self.xlApp.Wor...
分类:
编程语言 时间:
2014-08-16 11:03:30
阅读次数:
249
程序运行的生命周期对象的消失和出现的过程viewDidLoad调用的时机是self.view 的getter方法的调用后根据UIApplicationMain函数,程序将进入AppDelegate.m,这个文件是xcode新建工程时自动生成的。下面看一下AppDelegate.m文件,这个关乎着应用...
分类:
其他好文 时间:
2014-08-16 09:41:22
阅读次数:
245
从使用Quick-Cocos2d-x搭建一个横版过关游戏(四)拷来个进度条类,但是由于那个类有个bug,在setProgress里面self.fill是找不到的,所以我改进了一下,代码如下: 1 local Progress = class("Progress", function() 2 ...
分类:
其他好文 时间:
2014-08-15 19:33:19
阅读次数:
420
In order to reuse the Fragment UI components, you should build each as a completely self-contained, modular component that defines its own layout and behavior. Once you have defined these reusable Fragments, you can associate them with an Activity and conn...
分类:
移动开发 时间:
2014-08-15 01:33:16
阅读次数:
333
1.app尺寸,去掉状态栏
CGRect r = [ UIScreen mainScreen ].applicationFrame;
r=0,20,320,460
另外:self.view.bounds.size
2.屏幕尺寸
CGRect rx = [ UIScreen mainScreen ].bounds;
r=0,0,320,480
3.状态栏尺寸
C...
分类:
移动开发 时间:
2014-08-14 23:54:06
阅读次数:
267