摘要:
xxx-Bridging-Header.h 桥接文件是swift调用oc的接口文件,swift里要使用的oc类头文件都添加在这里 xxx.Swift.h 是oc调用swift的接口文件,由系统自动生成。 阅读全文
摘要:
A presentViewController 到B 后,A.presentedViewController就是B,B.presentingViewController就是A 阅读全文
摘要:
file1 file2的文本对比 逐行 #!/bin/bash list=`cat $file1` for line in `cat $file2` do array=(${line//,/}) #字符串逗号分隔 name=${array[0]} #获取数组第一个元素 if [[ $name == 阅读全文