Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 947 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 947 Bytes

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.


Copyright (c) 2015 Federico Saldarini

LinkedIn | 0xfede.io | GitHub