我想创建一个类Category的对象。我是iphone开发的新手,不知道该怎么做。 它是我的班级.h文件 Category.h
@interface类别:NSObject
@property(nonatomic,retain)NSString * uid; @property(非原子,保留)NSString * title;
@end
在java中它可以作为。 类别类别=新类别();
答案 0 :(得分:0)
Category *category = [Category alloc]init];
答案 1 :(得分:0)
现在我们通过写这样的
来为此分配内存Category * categoryObj = [[Category alloc] init];
现在我们可以像这样使用你想要的那个对象
categoryObj.uid = @“你的数据”;
categoryObj.title = @“你的数据”;
我希望这会对你有所帮助
答案 2 :(得分:0)
在Objective-c中,我们创建这样的对象:
类别* categoryObject = [[Category alloc] init];
现在您可以插入如下数据:
categoryObject。 UID = @ “2356-4fr5-ok8u-52o8-85ki-km76-l5bt-09ij-kf65-8ij6”;
categoryObject。 title = @“示例项目”;
享受编码