ios - Updatable text field -
this simple many of you. have been asked build simple iphone app in xcode when view loaded update text field sentence of text (that updated daily). have been trying research struggling little find right thing.
someone update db sentence of text fed text field.
i know open question point me in direction of how , can research myself?
thanks,
chris
well, start need url point content want. can grab following. please note not best method of doing so, if new ios not going optimized solution.
nsstring *phrase = [nsstring stringwithcontentsofurl:[nsurl urlwithstring:@"http://yoururl.com"]];
then can applied simple uilabel
.
somelabel.text = phrase;
of course there more adding button , whatnot, can find in standard tutorial anywhere online
Comments
Post a Comment