构造一个具有多对多关系的类的最佳方法是什么?
我来自 C# 背景。因此,让我向您展示我将如何在 C# 中做到这一点。
class User {
public List<string> Items { get; set; }
}
访问项目的代码:
User u = new User();
u.Items = new List<string>();
u.Items.Add( "foo" );
u.Items.Add( "bar" );
foreach( string s in u.Items ) {
Console.WriteLine( s );
}
我如何在 Objective-C 中做到这一点?