-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't integrate pod in objective-c project #99
Comments
Hi! Which pod version you use? |
Hi, |
I add that I'm importing the library using the following line at the beginning of the class: |
I don't know. |
Not good my friend... anyway I think it is related to the extension class. |
If you solve this problem, write here. |
Just create swift extension to objc class and use swift |
Interesting... I'm new to swift, can you please elaborate?
Any source or example?
Thanks!
Il giorno ven 4 ott 2019 alle ore 05:26 Nurzhan Ormanali <
[email protected]> ha scritto:
… Just create swift extension to objc class and use swift
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#99?email_source=notifications&email_token=AH3I2TT4HYRXB47V3R7YFFTQM2ZXRA5CNFSM4ISD7DV2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEAKHYCI#issuecomment-538213385>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AH3I2TWMSYVHREVLXHC7UPDQM2ZXRANCNFSM4ISD7DVQ>
.
|
import SPStorkController @objc extension VCDealInformation: SPStorkControllerDelegate {
} Something like this, just declare extension with @objc and after that build project (because it can not work first time, just wait) |
and this should be in separate file not in objc files (.m , .h) @ivanvorobei you can close this issue |
Hi,
I'm integrating the pod in an objective-c project, but I'm facing several issues.
I have the following code:
SPStorkTransitioningDelegate * transitionDelegate = [[SPStorkTransitioningDelegate alloc] init];
transitionDelegate.storkDelegate = self; <---------- ERROR
transitionDelegate.confirmDelegate = dialPad;
dialPad.modalPresentationStyle = UIModalPresentationCustom;
dialPad.transitioningDelegate = transitionDelegate;
The error is:
Property 'storkDelegate' not found on object of type 'SPStorkTransitioningDelegate *'
Any advise?
The text was updated successfully, but these errors were encountered: