|
//
// newPageBaseController.h
// ThePaperDemo
//
// Created by Scar on 14-9-15.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface newPageBaseController : TPHttpController
@property(nonatomic, strong)UIView *naviBar;
@property(assign, nonatomic)CGFloat barHeight;
@property(nonatomic, strong)UILabel *titleLabel;
@property(nonatomic, strong)NSString *titleStr;
@property(nonatomic, strong)UIView* selfLineView;
@property(nonatomic, assign)BOOL isPresent;
//@property(nonatomic, strong)UIView *waitBackView;
- (void)backHandler;
- (void)contentHaveOfflined;
- (void)topicHaveOfflined;
@end
|