我们知道self表示当前类的一个实例。可以调用方法,访问属性。那么_cmd是什么呢?Apple官方文档是这么说的。The _cmd variable is a hidden argument passed to every method that is the current selector.翻译...
分类:
其他好文 时间:
2014-11-27 12:30:38
阅读次数:
224
4.1Implementafunctiontocheckifatreeisbalanced.Forthepurposesofthisquestion,abalancedtreeisdefinedtobeatreesuchthatnotwoleafnodesdifferindistancefromtherootbymorethanone.Abalancedtree?http://en.wikipedia.org/wiki/Self-balancing_binary_search_treeIteratethetr..
分类:
其他好文 时间:
2014-11-27 08:03:52
阅读次数:
190
首先安装tornado.一. 在/var/www下新建文件index.py,内容如下:import tornado.ioloopimport tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): ...
分类:
Web程序 时间:
2014-11-26 18:29:01
阅读次数:
152
自动化计算包括计算系统的self-configuring(自动配置)、self-healing(自动修复)、self-optimizing(自动优化)、sekf-protection(自动保护),能够帮助企业节约大量系统管理成本。系统日志是记录生产设备运行过程中产生的记录数据,记录了操作系统运行状态...
分类:
其他好文 时间:
2014-11-26 18:23:17
阅读次数:
221
//行高 #define kLineSpace 1.5 self.memo.text = self.ticketModel.memo; //设置字体大小 self.memo.font = kFontSize(12); //计算字体size CGSize memoSize = [s...
分类:
移动开发 时间:
2014-11-26 18:23:14
阅读次数:
200
截取当前屏幕
UIGraphicsBeginImageContextWithOptions(CGSizeMake(CGRectGetWidth(self.superview.frame), CGRectGetHeight(self.superview.frame)), NO, 1);
[self.superview drawViewHierarchyInRect:CGRectMake(0, 0,...
分类:
移动开发 时间:
2014-11-26 16:43:51
阅读次数:
192
最初看到的关于如何获取客户端ip地址的博客是在Tornado获取客户端IP然后 查看tornado源码,发现可以直接用self.request.remote_ip获得客户端地址: def __str__(self): if self.address_family in (sock...
分类:
其他好文 时间:
2014-11-26 16:16:07
阅读次数:
243
在UIViewController里面这样设置:self.view.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@"1.jpg"] ];
分类:
移动开发 时间:
2014-11-26 16:02:32
阅读次数:
159
解决demo
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, BUTTON_WIDTH, BUTTON_HEIGHT)]; //添加点击事件 [btn addTarget:self action:@selector(buttonClickAction:) forControlEvents:UIContr...
分类:
移动开发 时间:
2014-11-26 14:28:53
阅读次数:
242
[self.navigationController pushViewController: sampleViewController animated:true]; 界面无反应
reason: 'Pushing a navigation controller is not supported'...
分类:
移动开发 时间:
2014-11-26 14:21:11
阅读次数:
189