ARC禁止s 或s中的Objective-C对象。struct
union
除非您添加__unsafe_unretained
这意味着它不受管理。
我想知道人们现在用什么代替struct
s 如果有的话?
还是您手动保留所有内容?
ARC禁止s 或s中的Objective-C对象。struct
union
除非您添加__unsafe_unretained
这意味着它不受管理。
我想知道人们现在用什么代替struct
s 如果有的话?
还是您手动保留所有内容?
这很简单——如果你想在结构中添加一个对象,那你就做错了。每当您需要一个结构来保存一个 obj-c 对象时,将该结构转换为一个 obj-c 对象。
我会像这样在一个 objc-object 中管理不同的对象:
@class MyFirst, MySecond;
@interface MyContainer : NSObject
@property (nonatomic, strong, readonly) MyFirst *firstInst;
@property (nonatomic, strong, readonly) MySecond *secondInst;
// optional: convenience initializer
+ (instancetype)containerWithFirstInst:(MyFirst *)firstInst secondInst:(MySecond *)secondInst;
@end
// required by linker: stub definition for the class declared above
@implementation MyContainer
@end
@interface SomeController : NSObject
- (void)doSomething;
@end
@implementation SomeController
- (void)doSomething {
MyFirst *firstInstance = [[MyFirst alloc] initWithSomeParameters:...];
MySecond *secondInstance = [[MySecond alloc] initWithSomeParameters:...];
MyContainer *container = [MyContainer containerWithFirstInst:firstInstance secondInst:secondInstance];
// use container as a struct (but it's definitely an object that is managed by ARC)
}
@end
如此处所示,实现一个静态类并伪造它的属性不是更容易吗?
我在这里回答了https://stackoverflow.com/a/28845377/1570826
也许具有正确级别的人可以将这个或另一个标记为重复。