ビジネスというクラスがあります。ビジネス クラスには、「id」、「name」、「slogan」などのプロパティがあります。
@interface Business : NSObject
@property (nonatomic) NSInteger id;
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *slogan;
オブジェクトのインスタンスを作成しました。
Business *newBusiness = [[Business alloc] initWithID:2];
ここで助けが必要です。「id」プロパティを呼び出したいが、変数を介して実行したいとします。
NSString *property = @"slogan";
[newBusiness property] = @"We can do it!";
また
newBusiness.property = @"We can do it!";