cocoapods

Use of unresolved identifier 'FlurryAdInterstitial'

自闭症网瘾萝莉.ら 提交于 2019-12-07 10:06:00
问题 I am trying to integrate Flurry Interstitial Ads using cocoapods in Swift and Xcode 7.1.1 . I am following this documentation from developer yahoo site https://developer.yahoo.com/flurry/docs/publisher/code/ios/#tab=0 The instructions don't seem to be working for me. First, I get this error in my AppDelegate.swift: Use of unresolved identifier 'Flurry' Then I found a closed issue in the Flurry Github repository https://github.com/flurry/Flurry-iOS-SDK/issues/3 I was able to remove the error

CocoaPods not linking with the project

折月煮酒 提交于 2019-12-07 09:54:59
问题 I have a project that uses CocoaPods. It was working but something got broken. It does compile if I target the simulator, but If I target the devise (Build or Archive) it throws a linker error. ld: warning: ignoring file /Users/myuser/ios/share/share/libPods.a, file was built for archive which is not the architecture being linked (armv7s): /Users/myuser/ios/share/share/libPods.a Undefined symbols for architecture armv7s: "_OBJC_CLASS_$_AFHTTPRequestOperationManager", referenced from: objc

Lint a Swift cocoa pod with SSZipArchive dependency

こ雲淡風輕ζ 提交于 2019-12-07 08:46:03
问题 Anyone had any luck creating a pod with a SSZipArchive dependency? My classes are all in Swift but I'm including my bridging file as well (#import "SSZipArchive"). When I try to lint I get 9 errors all related to SSZipArchive. Please let know your thoughts. Thanks so lot! ERROR | SSZipArchive/SSZipArchive/minizip/ioapi.h:45:10: error: include of non-modular header inside framework module 'SSZipArchive.ioapi' NOTE | Target Support Files/Pods-SSZipArchive/Pods-SSZipArchive-umbrella.h:5:9: note:

ERROR: Could not find a valid gem 'cocoapods' (>= 0) in any repository

纵饮孤独 提交于 2019-12-07 08:24:06
问题 i am trying to run a AWS Cognito service project in which i have added the AWS SDK for iOS but after adding it and trying to run it it shows me the below shown error in the image ERROR: Could not find a valid gem 'cocoapods' (>= 0) in any repository when i crawl it on internet and found some cocoapods install instructions so after trying that i got some other error like below aparajita:Objective-C Aparajita$ sudo gem install cocoapods Password: /System/Library/Frameworks/Ruby.framework

App crashes after power down on iPhone 4S

你离开我真会死。 提交于 2019-12-07 06:57:27
I am running iOS7 on an iPhone 4S and my app runs fine until I power down my iPhone and power it back on. When I launch my app it simply just flashes a black screen and then takes the user back to the iPhone app icon view. Also, my app uses RestKit .20.3 and ZBar for bar code scanning and is built using Xcode 5 on Mountain Lion. Then I connect my iPhone back to Xcode and then rerun the app and everything is fine again. Has anyone else experienced this issue. Below is a snippet from my crash log; Date/Time: 2013-10-03 22:23:41.334 -0400 OS Version: iOS 7.0.2 (11A501) Report Version: 104

How to fix the Cocoapods installation setup error?

 ̄綄美尐妖づ 提交于 2019-12-07 06:04:45
问题 Hi guys! I'm trying to install cocoapods in my mac but i'm not able to get it install as it is showing the following error ➜ Desktop $ sudo gem update --system Latest version currently installed. Aborting. ➜ Desktop $ sudo gem install cocoapods Successfully installed cocoapods-0.34.4 Parsing documentation for cocoapods-0.34.4 1 gem installed ➜ Desktop $ pod setup /Library/Ruby/Site/2.0.0/rubygems/dependency.rb:315:in to_specs': Could not find 'cocoapods' (>= 0) among 200 total gem(s) (Gem:

pod update results in “duplicate interface definition for class xxx” for all AWS SDK (El Capitan + XCode 7)

╄→гoц情女王★ 提交于 2019-12-07 05:09:47
问题 Just now, I updated my AWS SDK pods, which I regretted so much. I first saw this when pods were being updated: dyld: warning, LC_RPATH @executable_path/../../../../../../../SharedFrameworks in /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/../../..//DVTInstrumentsFoundation.framework/Versions/A/DVTInstrumentsFoundation being ignored in restricted program because of @executable_path dyld: warning, LC_RPATH @executable_path/../lib in /Applications/Xcode.app

iOS 8 extension dependencies issues. Importing one project file to extension view controller

只愿长相守 提交于 2019-12-07 03:39:00
问题 I am working on iOS 8 extension. I read many manuals and all of them just show how simple add extension to your app, and seems that's enough. But here are many pitfalls: After adding your extension you will need to import some of your classes to view controller that were created when you added new extension target. The big use here that you will need add all of them and if you have huge project it's not a simple task. Solution can be select extension target then in Build Phases -> Compile

Cocoapods subspec issue: None of your spec sources contain a spec satisfying the dependency

本小妞迷上赌 提交于 2019-12-07 03:09:49
问题 I modified a repo on Github to integrate a swift version of my library. https://github.com/iDevelopper/PBRevealViewController However when in a new project I try to pod install I get the error: [!] Unable to satisfy the following requirements: PBRevealViewController/Swift (= 1.2.3) required by Podfile None of your spec sources contain a spec satisfying the dependency: PBRevealViewController/Swift (= 1.2.3) . You have either: * out-of-date source repos which you can update with pod repo update

Exclude a pod from updating

非 Y 不嫁゛ 提交于 2019-12-07 02:28:58
问题 I use Cocoapods. I have made some changes to a 3rd party library and if I run pod update , all those changes would get replaced. Running pod install does the same thing. Is there a way to exclude a pod from updating? Or a way to install a single pod without affecting others? 回答1: At last Found the Solution. It will install pod without any repository update if you already have the library in the project,else will download pod install --no-repo-update If you want to update specific libraries