|
//
// AnimationWelcomeController.h
// ThePaperBase
//
// Created by scar1900 on 15/12/18.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@protocol animationWelcomeDelgate <NSObject>
- (void)goOutOperateNavigateion:(NSDictionary*)userInfo;
@end
@interface AnimationWelcomeController : TPHttpController
@property(nonatomic, weak)id<animationWelcomeDelgate> delegate;
@property(nonatomic, strong)NSDictionary* userInfo;
@end
|