|
//
// topicNoDataCell.h
// ThePaperHD
//
// Created by YoungLee on 15/5/28.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol topicNoDataDelegate <NSObject>
-(void) goAsk;
@end
@interface topicNoDataCell : UITableViewCell
@property(nonatomic, weak)id<topicNoDataDelegate> topicDataDelegate;
@end
|