WBStatusComposeViewController.h 583 B

123456789101112131415161718192021
  1. //
  2. // WBStatusComposeViewController.h
  3. // YYKitExample
  4. //
  5. // Created by ibireme on 15/9/8.
  6. // Copyright (c) 2015 ibireme. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef NS_ENUM(NSUInteger, WBStatusComposeViewType) {
  10. WBStatusComposeViewTypeStatus, ///< 发微博
  11. WBStatusComposeViewTypeRetweet, ///< 转发微博
  12. WBStatusComposeViewTypeComment, ///< 发评论
  13. };
  14. /// 发布微博
  15. @interface WBStatusComposeViewController : UIViewController
  16. @property (nonatomic, assign) WBStatusComposeViewType type;
  17. @property (nonatomic, copy) void (^dismiss)(void);
  18. @end