12345678910111213141516171819202122232425262728293031323334353637 |
- #import <UIKit/UIKit.h>
- #import "MWPhotoProtocol.h"
- @interface MWCaptionView : UIToolbar
- @property (nonatomic, strong) id <MWPhoto> photo;
- @property (nonatomic, strong) UILabel *label;
- - (id)initWithPhoto:(id<MWPhoto>)photo;
- - (void)setupCaption;
- - (CGSize)sizeThatFits:(CGSize)size;
- @end
|