| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // TabViewController.h
- // iShop
- //
- // Created by Rui Zhang on 12/14/23.
- //
- #import <UIKit/UIKit.h>
- #import "NotificationNameCenter.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface TabViewController : UIViewController
- -(void) logout;
- -(void) refresh_on_login;
- @property int refresh_type;
- @property bool isrefreshing;
- -(void)refresh_btn_click:(UILongPressGestureRecognizer*)gestureRecognizer;
- //-(void) showHidePrice;
- @property bool disable_refresh;
- - (void)reRefreshView;
- @property NotificationRefreshLevel notification_refreshLevel;
- @property bool show_navi;
- #pragma mark - child class response notification
- -(void) refresh_ui;
- -(void) reload_data;
- -(void) clear_data;
- -(void) refresh_price;
- +(void) Notify:(NSString*) arr_receiver Message:(NSString*)notification_msg ;
- @end
- NS_ASSUME_NONNULL_END
|