我使用 cocoapods 将 VIMNetworking 库引入我的项目。
pod 'VIMNetworking', '~> 6.0'
pod 'VIMObjectMapper', '~> 6.0'
现在在我的项目文件夹的 AppDelegate.m 中,当我尝试安装 pod 时
#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!");
}
. . .
}
感谢您对如何将 pod 初始化到我的项目中的任何反馈。