android的样式定义在res/values/style.xml文件中,类似web前端中将样式定义在某个css文件中,但android的style.xml是自动加载的,不需要手动import或link。目前还不了解android是否可以或怎么定义多个style文件。tr...
分类:
移动开发 时间:
2014-11-13 10:43:14
阅读次数:
267
网上找了一大包将尽3个小时没有解决,原本以为是我升级到10.10的原因,把cocoapod 重装 stackoverflow google 用尽了也不知道为啥
结果是这个样子的 编译出现这个....
然后 发现之前的link flag 只有-objc
改为 $(inherited) 成功了,折腾我3个小时蛋疼。哎。 有空在研究原理吧,或者哪位给指点...
分类:
其他好文 时间:
2014-11-13 01:53:56
阅读次数:
121
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 01:57:31
阅读次数:
139
original link:http://pangyi.github.io/blog/20141103/ce-shi-o/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 01:55:45
阅读次数:
116
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 00:31:00
阅读次数:
131
original link:http://pangyi.github.io/blog/20141105/ce-shi-wen-jian-tou/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 00:29:46
阅读次数:
159
original link:http://pangyi.github.io/blog/20141103/ce-shi-o/written by PangYiposted at http://pangyi.github.io
分类:
其他好文 时间:
2014-11-12 00:14:57
阅读次数:
124
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-11-11 22:56:05
阅读次数:
218
#include
#include
#define N 100
typedef struct node
{
int row, col;
int v;
struct node *r, *d;
}*link;
typedef struct crosslist
{
link rowhead[N], colhead[N];
int rows, cols, nums;
}*list;
int ...
分类:
编程语言 时间:
2014-11-11 19:13:01
阅读次数:
248
1.tab缩进2.读取文件,在文件名前加r或者R。这是因为python原始字符串特性,即在字符串的前面已R或者小写字母r开始,则字符串不对\进行转移,直接输出,通常用于表示windows的路径。file = open(r'E:\soft\Python\script\a.txt')for line i...
分类:
编程语言 时间:
2014-11-11 18:14:46
阅读次数:
168