Intent的中文意思是“意图,目的”的意思,可以理解为不同组件之间通信的“媒介”或者“信使”。目标组件一般要通过Intent来声明自己的条件,一般通过组件中的元素来过滤。Intent在由以下几个部分组成:动作(action),数据(data),分类(Category),类型(Type),组件(Co...
分类:
其他好文 时间:
2014-11-25 20:20:16
阅读次数:
191
8天玩转并行开发系列http://www.cnblogs.com/huangxincheng/category/368987.html.NET Framework 中的并行编程http://msdn.microsoft.com/en-us/library/dd460693(v=vs.110).asp...
分类:
其他好文 时间:
2014-11-25 15:48:20
阅读次数:
184
use mydbselect *from Category where Parent='013' or parent='011' or Parent='012'--in 代表在某些参数范围之内的都符合条件,相当于多个orselect *from Category where Parent in('0...
分类:
数据库 时间:
2014-11-25 10:35:04
阅读次数:
158
use mydb --排序select *from Category order by Ids asc--order排序的意思--asc 升序select *from Category order by Ids desc--desc 降序select *from Category order by ...
分类:
数据库 时间:
2014-11-25 10:25:27
阅读次数:
268
A.给某个类扩充方法(不改变原来的类)例如,给类Person加上名为Simon的category,加上一个-study方法使用()注明Person+Simon.h 1 @interface Person (Simon) 2 - (void) study; 3 @end 4 5 Person+Si.....
分类:
其他好文 时间:
2014-11-24 20:35:49
阅读次数:
145
一、多个条件查询:in、between select * from category where parent='013' or parent='12' or parent='011'等于select * from category where parent in ('011',''012','01...
分类:
其他好文 时间:
2014-11-24 15:11:17
阅读次数:
185
我想有很多朋友们也跟我有过这样的疑惑,那就是新的Xcode6如何新建一个category,extension,protocol文件,也有很多人尽管自己去尝试找过了,但是没有找到,而不是Xcode6没有这个功能,而是你不够仔细。今天小农在经过几番寻找,才找到这个创建的方法。
无论是Mac端还是iOS端口,均是选择source下的oc file,如下所示:...
分类:
其他好文 时间:
2014-11-24 11:58:04
阅读次数:
245
1,修改模板页,复制category_list.tpl,category_form.tpl,修改成新的名称。category_list.tpl是列出页面,category_form.tpl是添加和修改页,删除页和列出页共用模板。2,控制功能再controller文件夹下3,model是具体处理数据内...
分类:
其他好文 时间:
2014-11-24 06:21:00
阅读次数:
230
设计前端使用wordpress twentythirteen theme后台使用activeadmin and active_skin themeruby 2.15 on rails 4.1.8模型 category一对多↓ post ←多对多→ tag一对多↓ commentm...
分类:
其他好文 时间:
2014-11-23 21:28:05
阅读次数:
214
关于ios object-c 类别-分类 category 的静态方法与私有变量,协议 protocol2014-02-18 19:57315人阅读评论(0)收藏举报1.category,覆盖原类的方法,即使不引用该category头文件,也能覆盖,respondsToSelector:方法也能响应...
分类:
移动开发 时间:
2014-11-22 20:14:27
阅读次数:
160