我正在尝试运行 zoom api 的示例项目。
https://github.com/zoom/zoom-sdk-ios
我仔细检查了所有说明,并到处寻找有关“Apple mach-O 链接器错误”的信息。所有的结果都是关于链接框架的。我拥有 Link Binary With Libraries 中包含的所有框架。然后最重要的是我注意到了这个警告,它说由于缺少架构而忽略了框架。这是警告和错误列表。
ld: warning: ignoring file ../lib/mobileRTC.framework/mobileRTC, missing required architecture x86_64 in file ../lib/mobileRTC.framework/mobileRTC (2 slices)
Undefined symbols for architecture x86_64:
"_kMeetingParam_UserID", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
"_kMeetingParam_IsAppShare", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
"_kMeetingParam_MeetingNumber", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
-[MainViewController joinMeeting:withPassword:] in MainViewController.o
"_kMeetingParam_MeetingPassword", referenced from:
-[MainViewController joinMeeting:withPassword:] in MainViewController.o
"_kMeetingParam_Username", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
-[MainViewController joinMeeting:withPassword:] in MainViewController.o
"_OBJC_CLASS_$_MobileRTC", referenced from:
objc-class-ref in InviteViewController.o
objc-class-ref in AppDelegate.o
objc-class-ref in LanguaguePickerViewController.o
objc-class-ref in ScheduleTableViewController.o
objc-class-ref in MeetingSettingsViewController.o
objc-class-ref in MainViewController.o
objc-class-ref in SettingsViewController.o
...
"_kMeetingParam_UserType", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
"_kMeetingParam_UserToken", referenced from:
-[MainViewController startMeeting:] in MainViewController.o
"_OBJC_CLASS_$_MobileRTCInviteHelper", referenced from:
objc-class-ref in InviteViewController.o
objc-class-ref in MainViewController.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
有谁知道如何解决这个警告?我觉得如果我能以某种方式让它不忽略该框架,错误就会消失。