SettingsTableViewController.h 445 B

1234567891011121314151617181920212223242526
  1. //
  2. // SettingsViewController.h
  3. // SDLPal
  4. //
  5. // Created by palxex on 2017/5/18.
  6. // Copyright © 2017年 SDLPAL team. All rights reserved.
  7. //
  8. #ifndef SettingsViewController_h
  9. #define SettingsViewController_h
  10. #import <UIKit/UIKit.h>
  11. @protocol WebCaptureProtocol
  12. - (void)capturedURL:(NSURL *)url;
  13. @end
  14. @interface SettingsTableViewController : UITableViewController<WebCaptureProtocol> {
  15. }
  16. @end
  17. #endif /* SettingsViewController_h */