Card.io-for-Capital-One-vertical-Cards
Card.io-for-Capital-One-vertical-Cards copied to clipboard
[Question] Getting started
Please how do I get started with your enhanced version of the CardIO library in my app? Do I replace the source files from card.io-iOS-SDK
and how? Can your version be pulled in through CocoaPod or something similar? My preference would be a way to copy over the files, if I knew what to copy or alter.
Any help would be appreciated. Thanks
Tolu See the read.me http://read.me/ file and follow the instructions that are for the mobile platform you are planning to instal on. Coley
On Jan 31, 2017, at 10:53, Tolu Olowu [email protected] wrote:
Please how do I get started with your enhanced version of the CardIO library in my app? Do I replace the source files from card.io-iOS-SDK and how? Can your version be pulled in through CocoaPod or something similar?
Any help would be appreciated. Thanks
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/CTBConsulting/Card.io-for-Capital-One-vertical-Cards/issues/12, or mute the thread https://github.com/notifications/unsubscribe-auth/AQwvcXRhTsM-PUy85nWLOSbL_y71Y9jEks5rX1jpgaJpZM4Lyzxa.
Hi,
I am getting error when compiling on Xcode 8.3.3
/Card.io-for-Capital-One-vertical-Cards-master/prebuilt/ios/card.io-ios-source/Classes/CardIOVideoStream.mm:267:112: Cannot initialize a parameter of type 'UIResponder *' with an rvalue of type 'id<CardIOVideoStreamDelegate>'
Hi, I have the same error, do you have a fix for that? Thank you
To fix this, go to classes/CardIOVideoStream.h Find line: (around line 46) @property(nonatomic, weak, readwrite) id<CardIOVideoStreamDelegate> delegate;
Replace with: @property(nonatomic, weak, readwrite) UIResponder<CardIOVideoStreamDelegate> *delegate;
The project should then build properly