ios – 在Swift中使用RestKit

我已成功将“RestKit”pod添加到我的项目中,并按照本文中描述的步骤操作: @L_502_0@.我将RestKit导入到我的ViewController类的源文件中:
import RestKit

但我不知道为什么我无法访问它.它不会显示RestKit中的任何类.表明:

‘RestKit’ No such module exists.

我再次尝试创建一个新项目并添加了“RestKit”.并创建了一个桥接头并将“RestKit”导入ViewController claas的源文件中.现在我运行该项目
显示错误

//  in this file Pods-SOCKit-prefix.pch

    #ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #endif

    #import "Pods-environment.h" // Pods-environment.h file not found

 //  and also in this file Pods-TransitionKit-prefix.pch


    #ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #endif

    #import "Pods-environment.h" // Pods-environment.h file not found

如果有人知道这背后的问题是什么,请向我解释一下,并建议一种在Swift中使用RestKit的方法.

解决方法

我不确定你所拥有的Cocoapods问题.我将RestKit添加到我的桥接头,并且不需要将导入RestKit添加到我的Swift文件中.

我的桥接标题如下所示:

# if you are using Core Data:
#import <CoreData/CoreData.h>

#import <RestKit/RestKit.h> 

# if you are using Core Data:   
#import <RestKit/CoreData.h>

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...