I have a xib file with some UILabels.
In
- (void)viewDidLoad
I send a request to fetch JSON data from the server and in
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
I want to put the text I extracted from the JSON String into the Labels. I know that I get the Information I need from the JSON String since i can NSLog it, but it won’t show in the Labels. I tried
[self loadView];
at the end without success. What am i doing wrong?
I have a xib file with some UILabels. In – (void)viewDidLoad I send a
Share
If you simply set a label’s text, it should automatically refresh it: