码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
取消taleView上下扯动
if (ios_Vewsion_5_Or_Above) {//iOS 5系统之后的版本         self.tableView.bounces = NO;     } else {         for (id subview in self.tableView.subviews)             if ([[subview class] isSubclassOfCl...
分类:其他好文   时间:2014-07-22 23:03:13    阅读次数:281
【LeetCode OJ】Sum Root to Leaf Numbers
# Definition for a binary tree node# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right ...
分类:其他好文   时间:2014-05-05 22:56:23    阅读次数:419
UIImageView
[self.imageView sizeToFit];//根据图片自动调整大小
分类:其他好文   时间:2014-05-05 21:53:47    阅读次数:188
动态创建Ⅰ
//单独动态创建一个控件; procedure TForm1.BitBtn1Click(Sender: TObject);var myPanel : TPanel;begin myPanel := TPanel.Create(nil);//关于Create(nil)和Create(Self)的区别....
分类:其他好文   时间:2014-05-05 21:50:24    阅读次数:291
Python学习(三):入门篇:Python中怎么编写类
Python中怎么编写类 Last Edit 2013/5/2 先看一个例子: #person.py class person: """class to representaion a person""" def __init__(self,name,age): self.name=name if 0<age<=150: ...
分类:编程语言   时间:2014-05-03 15:48:31    阅读次数:390
A fine property of the non-empty countable dense-in-self set in the real line
A fine property of the non-empty countable dense-in-self set in the real lineZujin ZhangSchool of Mathematics and Computer Science,GannanNormalUnivers...
分类:其他好文   时间:2014-05-02 17:05:10    阅读次数:504
动画效果 打字延迟
self.myScrollView.frame = CGRectMake(0, self.stateNavigationHight-216+80, 320, [self getUIScreenHight]-113);     [UIView beginAnimations:@"roseImageViewAnimation" context:(__bridge void*)sel...
分类:其他好文   时间:2014-05-01 22:16:12    阅读次数:362
IOS中Block的循环引用
@interface DemoObj()@property (nonatomic, strong) NSOperationQueue *queue;@end@implementation DemoObj- (instancetype)init{ self = [super init]; ...
分类:移动开发   时间:2014-05-01 20:28:37    阅读次数:917
Python类的__getitem__和__setitem__特殊方法
class testsetandget: kk = {}; def __getitem__(self, key): return self.kk[key]; def __setitem__(self, key, value): self.kk[key] = value;a = testset...
分类:编程语言   时间:2014-05-01 20:16:13    阅读次数:449
iOS 画圆形头像
demo下载地址:http://pan.baidu.com/s/1mgBf6YG _logoImageView.image = [self getEllipseImageWithImage:[UIImage imageNamed:@"1_wsq724439564.jpg"]]; -(UIImage*)getEllips...
分类:移动开发   时间:2014-05-01 17:56:47    阅读次数:445
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!