
iOS新手一名,接手了一个前人留下的项目。花了一天时间才解决了第三方库不支持64位的问题,除掉了几十个error,但是最终被这个错误打败了……搜遍了也没找到解决方法,不知道还应该如何配置uild Settings和Build Phases,或者是其他什么地方???特来请教!
具体的错误信息在这里: http://stackoverflow.com/questions/29141941/building-error-whats-licucore-and-how-can-i-fix-this-error
Podfile内容如下:
pod 'AVOSCloud' target :Model do link_with ['DianaModels'] pod 'ReactiveCocoa', '~> 2.2' pod 'TMCache', '~> 1.2' pod 'SSKeychain', '~> 1.2' pod 'Mantle', '~> 1.3' pod 'AFNetworking', '~> 1.0' end target :Test do link_with ['DianaTests'] pod 'Kiwi', '~> 2.2' end target :View do link_with ['Diana'] pod 'SVPullToRefresh', '~> 0.4' pod 'MBProgressHUD', '~> 0.7' pod 'SWTableViewCell', '~> 0.1' pod 'MTMigration' pod 'Masonry' pod 'TTTAttributedLabel' pod 'NJKWebViewProgress' target :ViewDebug do link_with [ 'DianaDev', 'DianaViews' ] pod 'Reveal-iOS-SDK' end end