ios - Compiler errors on Xcode 6 -
ios - Compiler errors on Xcode 6 -
i updated xcode 6 while ago, had absolutely no errors on xcode 5.1.1 getting weird , totally illogical errors when compiling in xcode 6. went through of them have no thought why these errors appearing on xcode 6.
https://www.dropbox.com/s/z255siefabr8xtv/screenshot%202014-10-04%2009.56.35.png https://www.dropbox.com/s/19hcoi4068semuo/screenshot%202014-10-04%2009.56.50.png
all these errors on dependency pods , methods i've used in native code. none of these errors occurring in code except external library methods beingness called within code
yes, errors related compatibility. on terminal, within project directory - did rm -rf ~/.cocoapods
followed by, sudo gem install cocoapods
on terminal.
and now, before pod install
. modify podfile. instead of version, can specify :head
flag. utilize pod’s latest version spec version, forcefulness download of ‘bleeding edge’ version [source]. spec might not compatible source material anymore.
ecslidingviewcontroller
1 example. how podfile should -
source 'https://github.com/artsy/specs.git' source 'https://github.com/cocoapods/specs.git' platform :ios, '6.0' inhibit_all_warnings! # frameworks pod 'restkit', :head # ui pod 'flatuikit', :head pod 'svprogresshud', :head pod 'sdwebimage', :head pod 'mknumberbadgeview', :head pod 'tdbadgedcell', :head pod 'emaccordiontableviewcontroller', :head # controls pod 'tsmessages', :head pod 'ecslidingviewcontroller', '0.10.0' pod 'svpulltorefresh', :head pod 'wepopover', :head pod 'svwebviewcontroller', :head pod 'egophotoviewer', :head pod 'dacircularprogress', :head # tools pod 'fontawesomeiconfactory', :head pod 'keychainitemwrapper', :head pod 'dakeyboardcontrol', :head pod 'aranalytics/googleanalytics', :head pod 'instabug', :head # categories pod 'nsdata+base64', :head
ios objective-c xcode xcode6
Comments
Post a Comment