我有一个数组
main['device']=['iphone4','iphone5','iphone6'];
main['color']=['red','blue','white'];
main['size']=['10','20','30'];
所有三个阵列。是动态的。我需要所有的组合就像
iphone4 red 10
iphone4 red 20
iphone4 red 30
iphone4 blue
尝试使用Lambda表达式从我的数据库中获取数据。
假设我有一张看上去有点像这样的桌子(请注意空格和大小写):
姓名、数目:
iPhone 4,15
iphone 4,2
iPhone4,8
如果我尝试按名称查找条目(使用StartsWith()),我只想获取具有最高计数的结果,而不依赖于大小写和空格。因此,搜索"iphone4“"i p h o n e 4","iPhone4”sholud全部返回"iPhone 4"-record。
我的应用程序崩溃了,并在iPhone4上显示以下错误,但在iPhone 5上工作正常
Couldn't register us.xxxxxx.myproject with the bootstrap server.
Error: unknown error code.
This generally means that another instance of this process was already
running or is hung in the debugger.(lldb)
如何解决?