Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ability to customize how networkActivityIndicator is managed #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

georgemp
Copy link

@georgemp georgemp commented Dec 5, 2013

In some cases, it might be useful to customize how the networkActivityIndicator visibility is turned off or on. For example, we might have a central manager to do this, in case there are other threads that are also accessing the network. In my app, I use AFNetworking which manages a count of networkActivityIndicator setVisible requests and turns it on and off appropriately. Directly setting the activity indicator visibility to on/off via UIApplication in this case will not be truly representative of the actual network activity. So, I set up a block property where this custom behavior can be defined

modalWebViewController.customSetNetworkActivityIndicatorVisible = ^(BOOL networkActivityIndicatorVisible) {
        if (networkActivityIndicatorVisible)
            [[AFNetworkActivityIndicatorManager sharedManager] incrementActivityCount];
        else
            [[AFNetworkActivityIndicatorManager sharedManager] decrementActivityCount];
    };

Hope others will find this useful as well :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant