| 123456789101112131415161718192021 |
- //
- // WBStatusComposeViewController.h
- // YYKitExample
- //
- // Created by ibireme on 15/9/8.
- // Copyright (c) 2015 ibireme. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSUInteger, WBStatusComposeViewType) {
- WBStatusComposeViewTypeStatus, ///< 发微博
- WBStatusComposeViewTypeRetweet, ///< 转发微博
- WBStatusComposeViewTypeComment, ///< 发评论
- };
- /// 发布微博
- @interface WBStatusComposeViewController : UIViewController
- @property (nonatomic, assign) WBStatusComposeViewType type;
- @property (nonatomic, copy) void (^dismiss)(void);
- @end
|