|
//
// notificationController.h
// ThePaperBase
//
// Created by YoungLee on 15/8/17.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "TPTableViewController.h"
@protocol notificationDelegate <NSObject>
@optional
-(void) appearMsgMark:(NSMutableDictionary *) dic;
@end
@interface notificationController : TPTableViewController
@property(nonatomic, strong)id<notificationDelegate> delegate;
@end
|