Card.io-for-Capital-One-vertical-Cards icon indicating copy to clipboard operation
Card.io-for-Capital-One-vertical-Cards copied to clipboard

[Question] Getting started

Open tolu360 opened this issue 8 years ago • 4 comments

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

tolu360 avatar Jan 31 '17 15:01 tolu360

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.

CTBConsulting avatar Jan 31 '17 18:01 CTBConsulting

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>'

me-at-syeds-me avatar Jun 06 '17 16:06 me-at-syeds-me

Hi, I have the same error, do you have a fix for that? Thank you

AlonZilb avatar May 10 '18 07:05 AlonZilb

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

xcracing avatar Jan 16 '19 06:01 xcracing