|
//
// updateContent.h
// ThePaperDemo
//
// Created by scar1900 on 14/12/19.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol updateContentDelegate <NSObject>
- (void)didDismissUpdateContent:(UIView*)contentView;
@end
@interface updateContent : UIView
@property(nonatomic, weak)id<updateContentDelegate> delegate;
- (void)presentShareContentInView:(UIView*)view updateInfo:(NSDictionary*)info;
- (void)dismissUpdateContent;
@end
|