用CocoaPods导入第三方库xmppframe后编译出现armv7s错误,ps:我用的xcode5,求指点!
podfile 加入
post_install do |installer|
installer.project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ARCHS'] = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"
end
end
end