gpt4 book ai didi

ios - 在 iPhone6 设备上运行我的应用程序时出现错误

转载 作者:行者123 更新时间:2023-11-29 01:49:30 24 4
gpt4 key购买 nike

我的应用程序在模拟器上运行良好但是当试图在 iPhone6 设备上运行它时出现以下两个错误:

Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_CustomView", referenced from: objc-class-ref in TransparentView.o

ld: symbol(s) not found for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation)

CustomView是包含在staticLibrary中的头文件我的代码是:

    #import <UIKit/UIKit.h>
#import <CoreMotion/CoreMotion.h>
#import <CoreLocation/CoreLocation.h>



@interface CustomView : UIView<CLLocationManagerDelegate>



@property (strong, nonatomic)NSMutableDictionary* reducedlatLongDict;
@property (strong, nonatomic) NSMutableArray *reducednamesRequiredToLoad;

-(NSMutableArray*)sendTheDataToMainClass:(NSDictionary*)sendDictyionary :(NSString*)filterString1;
-(NSMutableArray*)gettingTheHeading:(CLHeading*)newHeading;
-(NSMutableArray*)getTheLocationUpdate:(CLLocation*)newLocation :(CLLocation*)fromLocation;

@end

最佳答案

您的静态库缺少 arm64 架构。

您可以在终端中通过以下命令检查您的库支持的体系结构

lipo --info /path/to/yourLib.a

如果它是您自己的库,您可能需要更改架构并重新构建它。

enter image description here




如果您不拥有该库,则可以从原始来源获取更新后的库。

关于ios - 在 iPhone6 设备上运行我的应用程序时出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31564916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com