|
//
// askDetailController.h
// ThePaperDemo
//
// Created by scar1900 on 14/11/14.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "newPageBaseController.h"
@interface inviteButton : UIButton
@property(nonatomic, strong)UILabel* textLabel;
@end
@protocol commentBarDelegate <NSObject>
@end
@interface commentBarView : UIView
@property(nonatomic, strong)UIView *topLine;
@property(nonatomic, strong)UIView *commentLine;
@property(nonatomic, strong)UIView *separateLine;
@property(nonatomic, strong)UIImageView *commentImgView;
@property(nonatomic, strong)inviteButton *inviteBtn;
@property(nonatomic, strong)UILabel *textLabel;
@property(nonatomic, strong)UIButton* commentBackBtn;
@property(nonatomic, weak)id<commentBarDelegate> delegate;
@property(nonatomic, copy) NSString *link;
- (void)subLayoutSubviews;
- (void)relayouSubView;
@end
@interface askDetailController : newPageBaseController
@property(nonatomic, strong)commentObjectVO *commentBO;
- (void)gotoCommentFromHotAnwser:(commentObjectVO *)comment;
@end
|