So, I updated the Xcode and GitHub project code to swift 3.0 (my project is in Obj C, and some of the modules I use from GitHub are in Swift). I got a bunch of bugs and now I'm stuck on these. For some reason, my dataSource and delegate for floatActionButton ( git here ) no longer work. I tried setting the dataSource and delegate programmatically and on the storyboard, but that didn't work.
Errors:
Property 'dataSource' not found on object of type 'LiquidFloatingActionButton *'
Property 'delegate' not found on object of type 'LiquidFloatingActionButton *'
I believe that if I find out the problem of dataSource and delegate , then it will fix the color error below.
Screenshot: 
.h:
#import <UIKit/UIKit.h> #import "ProductContentViewController.h" #import "LiquidFloatingActionButton-swift.h" @interface SetScreenViewController : UIViewController <UIPageViewControllerDataSource, LiquidFloatingActionButtonDelegate, LiquidFloatingActionButtonDataSource> ... @end
.m:
#import "LiquidFloatingActionButton-Swift.h" LiquidFloatingActionButton *floatingActionButton; NSMutableArray *liquidCells; bool *closeFloatingButtons; NSString *videoToWatchURL; - (void)addLiquidButton{
PodFile:
UPDATE BELOW
I ended up using this project because the original GitHub was not fixed, thanks for all the help, and if anyone finds out please, let everyone know here!
git ios objective-c delegates datasource
Lazar kukolj
source share