I have got the source code of Calendar component from https://github.com/MosheBerman/MBCalendarKit/blob/master/README.md
I want to integrate this into my app. How do I do it?
Can I import any of its frameworks etc?
I tried copying all the files into my Xcode project, but it makes the app heavy!
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.viewController = [CKDemoViewController new];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;