使用Cocoapods时,Swift无法同时在podfile文件中使用OC和Swift的SDK
【引用】https://segmentfault.com/q/1010000002908838]
当在CocoaPods同时添加Swift和OC的库,使用use_frameworks!后,在Bridging-Header.h中的确是无法import OC的库,也无需import。
只需要在swift文件头部,添加import OCLibraryName,即可使用。stackoverflow链接:http://stackoverflow.com/questions/24122914/how-to-integrate-cocoapods...
字典【keys /values】 转数组
let keyArray = [String](indexPathDic.keys);
let valueArray = [String](indexPathDic.values);
//判断字典是否为空
let bool1 = someDict2.isEmpty