JNAPushPopCompletionBlock alternatives and similar libraries
Based on the "Xcode" category.
Alternatively, view JNAPushPopCompletionBlock alternatives based on common mentions on social networks and blogs.
-
VVDocumenter-Xcode
DISCONTINUED. Xcode plug-in which helps you write Javadoc style documents easier. -
FuzzyAutocompletePlugin
A Xcode 5+ plugin that adds more flexible autocompletion rather than just prefix-matching. -
XAlign
An amazing Xcode Source Editor extension to align regular code. It can align anything in any way you want. -
CocoaPods Xcode Plugin
DISCONTINUED. Dependency management helper for your CocoaPods, right in Xcode. -
ClangFormat-Xcode
Xcode plug-in to to use clang-format from in Xcode and consistently format your code with Clang -
RTImageAssets
A Xcode plugin to automatically generate 2x, 1x image from 3x image for you, or upscale to 3x from 2x -
Animated Mask Label
An easy way to add a shimmering effect to any view with just one line of code. It is useful as an unobtrusive loading indicator. -
VWInstantRun
An Xcode plugin let you build & run your selected lines of code in Xcode without running the whole project, you'll have the output instantly in your Xcode console. -
HOStringSense-for-Xcode
XCODE 8 NOT SUPPORTED // Plugin for Xcode 7 to make working with strings less "escaped" -
BBUDebuggerTuckAway
Xcode plugin for auto-hiding the debugger once you start typing in the source code editor. -
FastStub-Xcode
Xcode Plugin helps you find missing methods in your class header, protocols, and super class, also makes fast inserting. -
Solarized-Dark-for-Xcode
Solarized Dark Theme for Xcode. Compatible with all modern versions of Xcode since 2013! -
Xcode Developer Disk Images
Quick fix your Xcode with the missing developer disk images. iOS, tvOS, watchOS files available. -
Surmagic
๐ Create XCFramework with ease! Surmagic is a command-line tool to create XCFramework for multiple platforms at one shot! You don't need to waste your time with command-line scripts when you want to create an XCFramework! Surmagic adds an elegant layer between you and the compiler, for your comfort. You can use Surmagic with your current CI/CD pipeline, or as a standalone tool in your toolbox. The better way to deal with XCFrameworks for iOS, iPadOS, Mac Catalyst, tvOS, macOS, and watchOS. -
Show in Github
Xcode plugin to open the GitHub page of the commit of the currently selected line in the editor window. -
KPRunEverywhereXcodePlugin
An Xcode 7 plugin to build and run an app across multiple iOS devices with one click.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of JNAPushPopCompletionBlock or a related project?
README
JNAPushPopCompletionBlock
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
- UINavigationController+JNAPushPopCompletionBlock.h
- UINavigationController+JNAPushPopCompletionBlock.m
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.