|
//
// TPViewController.h
// ThePaperDemo
//
// Created by Scar on 14-9-2.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#define kXHLabelBaseTag 1000
#define kXHLabelAssistTag 2000
@interface TPViewController : TPHttpController
@property(nonatomic, strong)UIView *naviBar;
- (void)followScrollView:(UIView*)scrollableView;
@property (assign, nonatomic) CGFloat barHeight;
@property(nonatomic, strong)UIView *lineView;
@property(nonatomic, strong)UIView *contentView;
@property(nonatomic, assign)NSInteger currentIndex;
@property (strong, nonatomic) UIView* overlay;
- (void)disableFollowScroll;
- (void)enableFollowScroll;
- (void)resetNaviBar;
@end
|