类使用class关键字创建。类的域和方法被列在一个缩进块中类的方法与普通的函数只有一个特别的区别——它们必须有一个额外的第一个参数名称,但是在调用这个方法的时候你不为这个参数赋值,Python会提供这个值。这个特别的变量指对象本身,按照惯例它的名称是self。Python中的self等价于C++中的...
分类:
编程语言 时间:
2014-08-12 16:28:24
阅读次数:
216
iOS页面跳转:第一种[self.navigationControllerpushViewController:subTableViewControlleranimated:YES];//描述:通过NSNavigationBar进行跳转[self.navigationControllerpopVie...
分类:
移动开发 时间:
2014-08-12 16:27:14
阅读次数:
220
Objective-C的推荐init方法写法如下:- (id) init{ if(self = [super init]) { //为子类增加属性进行初始化 } return self;}返回值为id类型,id类型可以赋值给其他类型指针,其他类型指针也可以赋值给...
分类:
其他好文 时间:
2014-08-12 02:58:53
阅读次数:
166
[plain]view plaincopyprint?- (id)init {self = [super init]; // Call a designated initializer here.if (self != nil) {// 省略其他细节}return self;}容易让人困惑的地方在于...
分类:
其他好文 时间:
2014-08-12 00:29:23
阅读次数:
236
UICollectionView cellForItemAtIndexPath not called解决办法: self.automaticallyAdjustsScrollViewInsets = NO;//解决cellForItemAtIndexPath not called问题我也不是很清楚原...
分类:
其他好文 时间:
2014-08-12 00:03:23
阅读次数:
449
偶尔机会接触到了它。由网上的知识总结了一个小代码。希望,对大家有用。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title...
分类:
其他好文 时间:
2014-08-11 23:49:13
阅读次数:
260
// 显示指示器
MBProgressHUD *HUD = [MBProgressHUD
showHUDAddedTo:[[UIApplication
sharedApplication].windows
objectAtIndex:1]
animated:YES];
[self.view.window
addSubview:HUD];
HUD.labelT...
分类:
移动开发 时间:
2014-08-11 21:32:22
阅读次数:
256
- (void)startLoop
{
[NSThread
detachNewThreadSelector:@selector(loopMethod)
toTarget:self
withObject:nil];
}
- (void)loopMethod
{
[NSTimer
scheduledTimerWithTimeInterval:3.0f...
分类:
移动开发 时间:
2014-08-11 21:31:22
阅读次数:
211
用处:实现一个web浏览器,加载静态html,动态url,调用js//加载动态urlself.webView = [[UIWebView alloc]initWithFrame:self.view.bounds];NSString *str = @"http://www.baidu.com";NSU...
分类:
Web程序 时间:
2014-08-11 17:16:32
阅读次数:
237
描述:输出全排列代码: 1 class Solution: 2 # @param num, a list of integer 3 # @return a list of lists of integers 4 def doSth(self, num): 5 ...
分类:
其他好文 时间:
2014-08-11 17:10:32
阅读次数:
205