@Marthughie What I do in my view. I have 3 views horizontal and the middle view disappears quite often. I save a variable for the width constraint. So lets Say I want to hide that view I do `NSLayout… (View Post)
Put constraints on the TableView to be the size of the rows. I managed to do this, if I can find my code I can share but it was 2 years ago. I usually do a minimum size with a 750 priority and then e… (View Post)
@Marthughie In your viewDidLayout is when constraints are calculated, and since you are setting this when the tableView hasn't been loaded it will always be 0 but you can do something like public cla… (View Post)
Is it possible to set the order of tests? I have a test class that executes one of the other and builds on a state left by the previous, but since they are firing in alphabetical order some are firin… (View Post)
Just set the underlying data with a property and in your GetCell if that property is true then change the style to a check mark. When you want to change all of them call TableView.ReloadTable(); Sinc… (View Post)