// // BaseViewController.h // Lighting // // Created by 曹云霄 on 16/4/27. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import @interface BaseViewController : UIViewController /** * 结束刷新 * * @param TableView Tableview */ - (void)endRefreshingForTableView:(UIScrollView *)TableView; /** * MBProgressHUD等待视图 */ - (void)CreateMBProgressHUDLoding:(NSString *)ShowText; /** * 移除MBProgressHUD等待视图 */ - (void)RemoveMBProgressHUDLoding:(NSString *)Endstring; /** * 渐隐提示框待回调Block */ - (void)SHOWPrompttext:(NSString *)Text ComcpleteBlock:(void(^)())completed; @end