Reputation: 5085
I have a very basic application that has two buttons that are supposed to retrieve properties and display them on a label. The classes are simple, basically containing properties.
The thing that I am running into is that everytime I hit the play button, it showcases a screen that is all white/blank.
So far, I am assuming this is due to a goof up in the UI because as far as the classes are concerned, I am quite confident that they work i.e they do not report any errors.
This question is vague but if you guys have experienced a similar issue maybe you know what it is.
So I'll leave this question at this without inching into more description that is highly likely to be irrelevant.
Any leads people?
Upvotes: 0
Views: 570
Reputation: 3674
When I was getting started with iOS stuff, I found a good way to debug weird UIView
behaviour was to set the backgroundColor
property of each view to a different colour, eg:
[myView setBackgroundColor:[UIColor redColor]];
That way I could tell at least vaguely what was going on.
Upvotes: 1