UIViewController-ActionSheetSimulation.h 555 B

12345678910111213141516171819
  1. //
  2. // UIViewController-ActionSheetSimulation.h
  3. // JasonDevelop
  4. //
  5. // Created by Jason Lee on 10/23/14.
  6. // Copyright (c) jasondevelop. All rights reserved.
  7. //
  8. @import UIKit;
  9. @interface UIViewController (ActionSheetSimulation)
  10. - (UIView *)actionSheetSimulationWithPickerView:(UIView *)pickerView withToolbar:(UIToolbar *)pickerToolbar;
  11. - (void)showActionSheetSimulation:(UIView *)actionSheetSimulation pickerView:(UIView *)pickerView withToolbar:(UIToolbar *)pickerToolbar;
  12. - (void)dismissActionSheetSimulation:(UIView*)actionSheetSimulation;
  13. @end