gpt4 book ai didi

objective-c - 如何在 clang 中使用 __weak 引用?

转载 作者:行者123 更新时间:2023-12-02 15:15:28 25 4
gpt4 key购买 nike

我写了一个简单的OC文件来测试一个__weak引用

#import "Foundation/Foundation.h"

@interface Foo : NSObject
@property (nonatomic, assign) int a;
- (void)test;
@end

@implementation Foo
- (void)test
{
__weak typeof(self) weakSelf = self;
[weakSelf test];
}

@end

int main()
{
Foo* foo = [[Foo alloc] init];
foo.a = 3;
[foo test];
return 0;
}

使用 clang -rewrite-objc keke.m 编译时出现以下错误:

cannot create __weak reference because the current deployment target does not support weak references __attribute__((objc_ownership(weak))) typeof(self) weakSelf = self;

如何直接在 clang 中设置 depoly 目标。我试过了

clang -rewrite-objc -stdlib=libc++ -mmacosx-version-min=10.7 keke.m

但运气不好。

最佳答案

您必须启用并设置运行时版本。尝试:

clang -rewrite-objc -fobjc-arc -stdlib=libc++ -mmacosx-version-min=10.7 -fobjc-runtime=macosx-10.7 -Wno-deprecated-declarations keke.m

关于objective-c - 如何在 clang 中使用 __weak 引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40946716/

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