码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
Python类
类使用class关键字创建。类的域和方法被列在一个缩进块中类的方法与普通的函数只有一个特别的区别——它们必须有一个额外的第一个参数名称,但是在调用这个方法的时候你不为这个参数赋值,Python会提供这个值。这个特别的变量指对象本身,按照惯例它的名称是self。Python中的self等价于C++中的...
分类:编程语言   时间:2014-08-12 16:28:24    阅读次数:216
iOS页面跳转及数据传递
iOS页面跳转:第一种[self.navigationControllerpushViewController:subTableViewControlleranimated:YES];//描述:通过NSNavigationBar进行跳转[self.navigationControllerpopVie...
分类:移动开发   时间:2014-08-12 16:27:14    阅读次数:220
self = [super init]
Objective-C的推荐init方法写法如下:- (id) init{ if(self = [super init]) { //为子类增加属性进行初始化 } return self;}返回值为id类型,id类型可以赋值给其他类型指针,其他类型指针也可以赋值给...
分类:其他好文   时间:2014-08-12 02:58:53    阅读次数:166
关于 self = [super init];
[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
UICollectionView cellForItemAtIndexPath not called解决办法: self.automaticallyAdjustsScrollViewInsets = NO;//解决cellForItemAtIndexPath not called问题我也不是很清楚原...
分类:其他好文   时间:2014-08-12 00:03:23    阅读次数:449
关于performSelector
偶尔机会接触到了它。由网上的知识总结了一个小代码。希望,对大家有用。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title...
分类:其他好文   时间:2014-08-11 23:49:13    阅读次数:260
ios 指示器MBProgressHUD 的使用
// 显示指示器     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
ios 独立创建一条线程,去做些事情
- (void)startLoop {         [NSThread detachNewThreadSelector:@selector(loopMethod) toTarget:self withObject:nil]; } - (void)loopMethod {     [NSTimer scheduledTimerWithTimeInterval:3.0f...
分类:移动开发   时间:2014-08-11 21:31:22    阅读次数:211
UIWebView控件
用处:实现一个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
#Leet Code# Permutation
描述:输出全排列代码: 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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!