Guest User

Untitled

a guest
Dec 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //
  2. // LNCustomPickerView.h
  3. // LNCustomPickerView
  4. //
  5. // Created by Madjid Mahdjoubi on 6/5/13.
  6. // Copyright (c) 2013 GG. All rights reserved.
  7. //
  8.  
  9. #import <UIKit/UIKit.h>
  10.  
  11. @interface LNCustomPickerView : UIView
  12.  
  13. + (void)showWithStrings:(NSArray *)strings
  14. selectedString:(NSString *)selectedString
  15. completion:(void (^)(NSString *selectedString))completion;
  16.  
  17. + (void)showWithObjects:(NSArray *)objects
  18. selectedObject:(id)selectedObject
  19. objectToStringConverter:(NSString *(^)(id object))converter
  20. completion:(void (^)(id selectedObject))completion;
  21.  
  22. @end
Add Comment
Please, Sign In to add comment