You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've moved to using Alamofire instead of AFNetworking for my networking needs.
Consequently, this means I'm not focusing on this library so much...
As @AnthonyMDev mentions, you can submit your own pull request, and either Anthony or I will be happy to take a look.
Don't have time? I don't either.
Sorry, but this is open-source software, which means it's low priority when times get busy, and times are really busy for me.
If this is something you care about immediately, @AnthonyMDev, feel free to put something together, and I'd be happy to review it, provide advice, whatever you need. :-]
looks like property "center" is taken relatively to parent view. It causes shifting of indicator. Please change
activityIndicator.center = self.center
to
CGRect frame = self.frame;
activityIndicator.center = CGPointMake(frame.size.width / 2, frame.size.height / 2);
That will be correct positioning
The text was updated successfully, but these errors were encountered: