Hi,
I have an iOSMobileTable control where each row is a MobileTableCustomCell instance. I’m finding that only one cell per row wastes space: vertically, the user would have to scroll a lot, while horizontally, each row has huge blank. I’d like to have several cells per row.
I’m seeing two options, since the iOSMobileTable doesn’t look to support multiple columns natively (or in Xojo, at least). Either I put several iOSMobileTable next to each other or I design the MobileTableCustomCell to have everything tripled (so instead of a “Pressed as Boolean” property, I’d have “Pressed1 As Boolean”, “Pressed2 As Boolean” and “Pressed3 As Boolean” and every control being duplicated). Both options don’t look good OOP practice, because of having multiple things for the same purpose.
Advices welcome.
Edit: in this case, the answer is straightforward: I’m packing everything in a canvas (a new custom class). Still, I’m leaving this question open, as I’m curious about situations where it’s not possible to merge the whole MobileTableCustomCell into a canvas.