Array data size limit?

Hello guys!

I have two dimensional array with fixed size (15x100). Empty slots are filled in order with strings containing 16-17 chars. In same stage when storing values the app crashes. So far I have not been able to reproduce this in simulator. 

i’m just wondering what is the data size limit of an array? Might that be the issue? 

is there any way to debug in watch?

Thanks!

  • In general in computer science there are different data structures that can be used more or less for the same thing but with different performance. Some are faster in some of the actions than others, but usually the price is more wasteful memory management and vica versa.

    So maybe you should be more precise with what do you want to achieve, within what constraints, the size of the data, etc.