All Projects → JawadAsif → JNAPushPopCompletionBlock

JawadAsif / JNAPushPopCompletionBlock

Licence: MIT license
Completion Block for UINavigationController Push/Pop UIViewController

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to JNAPushPopCompletionBlock

Winter
Winter is a 2D game engine for Pharo Smalltalk
Stars: ✭ 43 (+7.5%)
Mutual labels:  mit-license
junos-automation-with-ansible
How to automate Junos with Ansible. This project has many ready-to-use Ansible playbooks to interact with Junos devices.
Stars: ✭ 69 (+72.5%)
Mutual labels:  travis-ci
skeleton-quasar
Exemplo simples de skeleton para o Quasar Framework
Stars: ✭ 40 (+0%)
Mutual labels:  travis-ci
continuous-integration-with-python
How to test your python code. How to automatically run your tests for your Python code. How to get reports of the tests coverage
Stars: ✭ 25 (-37.5%)
Mutual labels:  travis-ci
Parkour
The ultimate Parkour plugin.
Stars: ✭ 59 (+47.5%)
Mutual labels:  travis-ci
Willow
The Web Interaction Library that eases the burden of creating AJAX-based web applications
Stars: ✭ 41 (+2.5%)
Mutual labels:  mit-license
floss
Unit-testing for those hard to reach places
Stars: ✭ 26 (-35%)
Mutual labels:  travis-ci
MyBatisGenerator-Tool
🔧 A tool which aims to generate code by using MyBatis Generator with Gradle in IntelliJ IDEA.
Stars: ✭ 20 (-50%)
Mutual labels:  mit-license
plugin.video.sendtokodi
📺 plays various stream sites on kodi using youtube-dl
Stars: ✭ 86 (+115%)
Mutual labels:  travis-ci
create-mern-ts-app
Create a Mongo-Express-React-Node Application written in TypeScript out of the box.
Stars: ✭ 30 (-25%)
Mutual labels:  travis-ci
Websocket-React-Chatroom
A chatroom powered by React-Hooks and Websocket🚀
Stars: ✭ 76 (+90%)
Mutual labels:  travis-ci
nn-segmentation-for-lar
Neural networks to segment some type of biomedical images
Stars: ✭ 21 (-47.5%)
Mutual labels:  mit-license
fswatch
File/Directory Watcher for Modern C++
Stars: ✭ 56 (+40%)
Mutual labels:  mit-license
J1939-Framework
Framework to work with J1939 Frames used in CAN bus in bus, car and trucks industries
Stars: ✭ 123 (+207.5%)
Mutual labels:  travis-ci
ParsecSoda
Parsec Soda is a custom open-source game streaming app that integrates with Parsec API and is focused in Host experience.
Stars: ✭ 135 (+237.5%)
Mutual labels:  mit-license
colorizzar
📗 -> 📘 Change color of png keep alpha channel in php!
Stars: ✭ 27 (-32.5%)
Mutual labels:  travis-ci
video-to-markdown
How to embed a video in markdown? Here the answer. Add videos to your markdown files easier.
Stars: ✭ 159 (+297.5%)
Mutual labels:  travis-ci
sbt-travisci
An sbt plugin to integrate with Travis CI
Stars: ✭ 44 (+10%)
Mutual labels:  travis-ci
PHP-File-Cache
Light, simple and standalone PHP in-file caching class
Stars: ✭ 34 (-15%)
Mutual labels:  mit-license
lidtk
Language Identification Toolkit
Stars: ✭ 17 (-57.5%)
Mutual labels:  mit-license

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].