struct
是否可以为 Objective-C创建类似 C 的东西?我需要能够使用它,NSArray
所以它不能是传统的struct
. 现在我宣布一个完整的班级只是为了完成这个,我想知道是否有更简单的方法。
我目前拥有的:
@interface TextureFile : NSObject
@property NSString *name;
@property GLKTextureInfo *info;
@end
@implementation TextureFile
@synthesize name = _name;
@synthesize info = _info;
@end
NSMutableArray *textures;
我想做的事:
typedef struct {
NSString *name;
GLKTextureInfo *info;
} TextureFile;
NSMutable array *textures;