私は cocoapods を使用して、VIMNetworking ライブラリをプロジェクトに取り込みました。
pod 'VIMNetworking', '~> 6.0'
pod 'VIMObjectMapper', '~> 6.0'
ポッドがインストールされているときに、プロジェクトフォルダーの AppDelegate.m で試してみます
#import "AppDelegate.h"
#import "VIMNetworking.h"
このエラーが表示されます。「VIMNetworking.h」ファイルが見つかりません。
VIMNetworking Pod でこのファイルを検索しても存在しません。私はgitHubの初期化セットアップに従おうとしています。
#import "VIMNetworking.h"
. . .
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
VIMSessionConfiguration *config = [[VIMSessionConfiguration alloc] init];
config.clientKey = @"your_client_key";
config.clientSecret = @"your_client_secret";
config.scope = @"your_scope"; // E.g. "private public upload etc"
config.keychainService = @"your_service";
config.keychainAccessGroup = @"your_access_group"; // Optional
[VIMSession sharedSession setupWithConfiguration:config];
if ([[VIMSession sharedSession].account isAuthenticated] == NO)
{
NSLog(@"Authenticate...");
}
else
{
NSLog(@"Already authenticated!");
}
. . .
}
ポッドをプロジェクトに初期化する方法についてフィードバックをお寄せいただきありがとうございます。