Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.02 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.02 KB

OXFEDE::Drawer

Customizable drawer (UIViewController container) for iOS.

How to use it:

  1. Make sure you have both the OXFEDEDrawer OXFEDEDrawerAppearanceDelegate classes in your project.

  2. Include OXFEDEDrawer.h

  3. Look at the drawer public interface for a list of properties you can change at runtime. A simple example:

    	//	Inside some view controller:
    
        self.drawer = [OXFEDEDrawer new];
        self.drawer.container = self;
        self.drawerContent = //	Some other view controller
        self.drawer.content = self.drawerContent;
  4. For further customization inherit from the default appearance delegate OXFEDEDrawerAppearanceDelegate or implement the OXFEDEDrawerAppearanceDelegate protocol.

Detailed tutorial on this component's implementation


Copyright (c) 2015 Federico Saldarini

LinkedIn | Blog | GitHub