AM using a UIActivityIndicator view as a UITableViewFooter, works fine in simulator, but shows different behavior in devices,think that occurs due to OS change.
Sometimes it fits to the width of the screen and seems enlarged, in other cases simply disappears, Any solution?
AM using a UIActivityIndicator view as a UITableViewFooter , works fine in simulator, but
Share
Found the reason myself, adding UIActivityIndicator as footer causes trouble in certain devices, so its better to use text like “Loading…”if you still need to show a footer.Else add an extra cell to UITableView and add UIActivityIndicator to that last cell.
In my case, the error was while testing in 3GS, no trouble in other devices.
Regards