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;
From the documentation:
MBCalendarKit requires Quartz, Core Graphics, UIKit, and Foundation. The Unit Tests build against the XCTest framework. Xcode should take care of all those except QuartzCore.framework. If you're building the tests, you may have to link to XCTest yourself, as well.
Aside from the framework dependencies described above, you'll want everything in the CalendarKit folder.