I am trying to find how to implement a custom message on the status bar, something like the Evernote "Downloading changes..." message seen here.
Is this a private API call? Any suggestions or pointers?
I am trying to find how to implement a custom message on the status bar, something like the Evernote "Downloading changes..." message seen here.
Is this a private API call? Any suggestions or pointers?
This pretty much looks like a label put on top of the view there and then the table view right below it , should not be tough to do...
UILabel *label=...
label.text=@"My Text"
//maybe justify here so its c enters
//set the rectangle bounds to what they need to be
//for the example there it would probably be (0,0,320,5) or something like that
//and the tableview w ould be at (0,5,320,455)