我想在NSDictionary中添加多个值。他们让我麻烦。
我是Swift新手。

 m=NSDictionary(objectsAndKeys:[self.getStringAt(selectStmt, column: 0)],"first",[self.getStringAt(selectStmt, column: 1)],"second",nil)

最佳答案

你可以这样

let interestingNumbers = [
                            "Prime"     : [2,3,5,7,11,13],
                            "Fibonacci" : [1,1,2,3,5,8],
                            "Square"    : [1,4,9,16,25]
                         ]


希望这可以帮助。

关于ios - 在字典中添加多个键和值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31981691/

10-13 04:47