iOS VIMNetworking找不到文件#import“VIMNetworking.h”

时间:2016-04-27 18:41:08

标签: ios objective-c xcode vimeo-ios

我使用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初始化到我的项目中的任何反馈。

0 个答案:

没有答案