Popularity
1.5
Stable
Activity
0.0
Stable
40
4
8

Code Quality Rank: L5
Programming language: Objective-C
License: MIT License

JNAPushPopCompletionBlock alternatives and similar libraries

Based on the "Xcode" category.
Alternatively, view JNAPushPopCompletionBlock alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of JNAPushPopCompletionBlock or a related project?

Add another 'Xcode' Library

README

JNAPushPopCompletionBlock

codebeat badge Build Status Cocoapod Platform License

Synopsis

Completion block for

[self.navigationController pushViewController:(nonnull UIViewController *) animated:(BOOL)]

and

[self.navigationController popViewControllerAnimated:(BOOL)];
[self.navigationController popToViewController:(nonnull UIViewController *) animated:(BOOL)];
[self.navigationController popToRootViewControllerAnimated:(BOOL)];

Installation

Using Cocoapod

pod 'JNAPushPopCompletionBlock'

Manual

Add

to your project.

Usages

Check out the demo app for an example.

#import "UINavigationController+JNAPushPopCompletionBlock.h"

---------
[self.navigationController pushViewController:viewController animated:YES completion:^{
    // Add code here.
}];

[self.navigationController popViewControllerAnimated:YES completion:^{
    // Add code here.
}];

[self.navigationController popToViewController:viewController animated:YES completion:^{
        // Add code here.
}];

[self.navigationController popToRootViewControllerAnimated:YES completion:^{
    // Add code here.
}];

License

JNAPushPopCompletionBlock is available under MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the JNAPushPopCompletionBlock README section above are relevant to that project's source code only.