
Announcements
So... I have a section in my app that allows the user to scroll through outstanding issues. Now, obviously sometimes there are no issues, in which case this section and all the contents where the issues would show up would be hidden. In my code, I do have a lot of index statements for navigating the issues, but these bits of code are inside If(issue_count>0, [stuff goes here]) statements... which I figured would be perfectly Ok.... as i figured that if issue_count is zero, the Index part never gets evaluated and therefore should not be a problem... but clearly I'm missing something as this is giving me errors and I have about a 100 of these everywhere! How do I fix this?
For example this is giving me an error: