Advertisement
Guest User

Untitled

a guest
Jul 5th, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.    UINavigationBar+customSetting.h
  3. **/
  4.  
  5. #import <UIKit/UIKit.h>
  6.  
  7. @interface UINavigationBar (BackImage)
  8.  
  9. -(id)initWithCustomSettings;
  10.  
  11. @end
  12.  
  13. /**
  14.    UINavigationBar+customSetting.m
  15. **/
  16.  
  17. #import "UINavigationBar+customSetting.h"
  18.  
  19. @implementation UINavigationBar (BackImage)
  20.  
  21. -(id)initWithCustomSettings{
  22.     // custom init
  23. }
  24.  
  25. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement