gpt4 book ai didi

iphone - Objective-C:创建 NSMutableDictionary 或 NSMutableArray

转载 作者:行者123 更新时间:2023-12-03 17:28:13 25 4
gpt4 key购买 nike

对于我的 iPhone 应用程序,我想管理 NSMutableDictionaryNSMutableAarray 中的值。

我想以这种格式存储评分

round   player1  player2
1 6 8
2 7 9
-- -- --

在我的例子中,回合数将是固定值,假设为 10,玩家总数为 2,这也是固定的。

但用户可以按任意随机顺序提交分数,但只需单击一个按钮即可。意味着

 score for round  "10" for both the player   enter
score for round "2" for both the player enter

如何管理字典或数组以帮助我轻松地再次检索它们?

最佳答案

为什么面向对象语言中只有数组或字典?

@interface RoundResults : NSObject

@property (nonatomic, assign) NSInteger playerOneScore;
@property (nonatomic, assign) NSInteger playerTwoScore;

@end

@interface GameTotal : NSObject

- (void)setResults: (RoundResults *)results forRound: (NSInteger)round;
- (RoundResults *)resultsForRound: (NSInteger)round;
- (NSUInteger)countOfResults;

@end

关于iphone - Objective-C:创建 NSMutableDictionary 或 NSMutableArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9972135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com