为警告框添加一个可选的 .alert-dismissible 类和一个关闭按钮。 ...
分类:
其他好文 时间:
2017-06-25 17:04:41
阅读次数:
131
#继承实现#父亲会书法,大儿子和小儿子会书法#父亲一般能吃,大儿子吃超过,小儿子吃得少class father: def write(self): print 'i can write'class oldbrother(father):#class A(B)子类A继承父类B def eat(self ...
分类:
编程语言 时间:
2017-06-25 16:11:57
阅读次数:
119
iOS的一些小技巧 TableView不显示没内容的Cell怎么办? 类似这样的,我不想让以下那些空的显示. 非常easy. self.tableView.tableFooterView = [[UIView alloc] init]; 试过的都说好. 加完这句之后就变成了这样. 自己定义了left ...
分类:
移动开发 时间:
2017-06-25 16:09:01
阅读次数:
181
目的: 提供类似java中的getter/setter的东西。 (getter/setter的目的: 将属性方法化,使得属性的引用变得简单 尤其将来属性的读取/赋值有比较复杂的逻辑) 官方简明文档: https://docs.python.org/2/howto/descriptor.html 英文 ...
分类:
编程语言 时间:
2017-06-25 16:08:25
阅读次数:
135
1、update() 官方说明: def update(self, *args, **kwargs): # real signature unknown """ Update a set with the union of itself and others. """ pass 描述:扩展集合 参数 ...
分类:
编程语言 时间:
2017-06-24 19:48:21
阅读次数:
273
cell下载图片的时候会崩溃: 什么时候使用weakSelf? 参考这篇博客: http://ios.jobbole.com/88708/ block避免循环循环引用 什么时候使用strongSelf? 在block中多次使用Self的属性,方法,为了避免self变成nil(因为weak修饰的变量在 ...
分类:
其他好文 时间:
2017-06-24 19:48:12
阅读次数:
125
1.首先新建一个类该类继承UIButton 2.实现几个方法 1).改动字体的一些属性 -(instancetype)initWithFrame:(CGRect)frame{ self = [superinitWithFrame:frame]; if (self) { 1--》设置字体显示的位置(左 ...
分类:
移动开发 时间:
2017-06-24 18:29:49
阅读次数:
210
通过调用有道翻译的api,实现中译英、其他语言译中文 代码: 参考文档: http://ai.youdao.com/docs/api.s ...
分类:
编程语言 时间:
2017-06-24 17:16:31
阅读次数:
582
一、Disconnected Mailboxes 1、Finding Disconnected Mailboxes The first function is called Get-DisconnectedMailbox and the name is pretty much self explan ...
分类:
系统相关 时间:
2017-06-24 16:16:16
阅读次数:
270
tf.Graph.as_default() as_default(self) Returns a context manager that makes this `Graph` the default graph. This method should be used if you want to ...
分类:
其他好文 时间:
2017-06-24 09:57:41
阅读次数:
122