AGNavigationBarShape 0.3.3

AGNavigationBarShape 0.3.3

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jan 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Aurelien Grifasi.



  • By
  • Aurelien Grifasi

AGNavigationBarShape

iOS Navigation Bar with customs shapes (Zigzag, Wave and Square).

sample

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

Manually

Add the AGNavigationBarShape.swift file to your project.

Usage

Setup

Add import AGNavigationBarShape in your file

In your app delegate:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.

 let rootViewController = UIStoryboard.init(name: "Main", bundle: nil).instantiateInitialViewController()
 let navController = UINavigationController(navigationBarClass: AGNavigationBarShape.self, toolbarClass: nil)

 (navController.navigationBar as? AGNavigationBarShape)?.shapeMode = ShapeMode.wave.rawValue
 (navController.navigationBar as? AGNavigationBarShape)?.color = UIColor.purple
 (navController.navigationBar as? AGNavigationBarShape)?.cycles = 10
 (navController.navigationBar as? AGNavigationBarShape)?.heightShape = 15

 navController.viewControllers = [rootViewController!]

 window?.rootViewController = navController
 window?.makeKeyWindow()
 return true
}

Storyboard Support

  1. Add AGNavigationBarShape Class and Module to UINavigationController’s navigationBar in Identity Inspector

sample

  1. If you want to custom it, set options in the Attributes Inspector tab

sample

Features

  • Choose shape mode (0: Zigzag, 1: Wave, 2: Square) (Zigzag by default)
  • Custom number of cycle (9 by default)
  • Custom background color (orange by default)
  • Custom height of the shape (10 by default)

Author

Aurelien Grifasi, [email protected]

License

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