https://github.com/MosheBerman/MBCalendarKit/blob/master/README.mdからカレンダー コンポーネントのソース コードを取得しました。
これを自分のアプリに統合したい。どうすればいいのですか?
そのフレームワークなどをインポートできますか?
すべてのファイルを Xcode プロジェクトにコピーしようとしましたが、アプリが重くなります。
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;