代码符合Objective-C视图控制器

时间:2017-06-29 17:16:01

标签: ios objective-c

我正在尝试将CAS登录目标-C代码实现到我当前的Xcode项目中,但每次我尝试从我的一个IBOutlet中获取文本错误时,我都会遇到代码编译错误。以下是CAS视图控制器的代码: CASViewController.m - Look at the username and password strings that's where the problem is

CASViewController.h - the username and passwords swift IBOutlets are hat connect the storyboard to code and which are causing the problem

我是swift的新手,所以我一直在四处寻找这个工作。我已经使CAS客户端成为一个静态链接库,我已经建立了一个桥接文件来连接代码但是我仍然处于亏损状态。提前感谢您的帮助。

我得到的错误:

错误是:2017-07-03 12:31:22.520 SAF [2947:45298] Interface Builder文件中的未知类_TtC11CAS library17CASViewController。 2017-07-03 12:31:22.530 SAF [2947:45298] ***由于未捕获的异常'NSUnknownKeyException'终止应用程序,原因:'[setValue:forUndefinedKey:]:

1 个答案:

答案 0 :(得分:0)

UILabel IBOutlets缺少必需的连接。您需要将它们与Storyboard的{​​{1}}。

中的标签相关联

具体来说,UILabel UIViewController未连接到Storyboard。使用authResultMessage将其与Storyboard中的相关标签相关联。