Introduce roomListDataReady on HomeViewController

This commit is contained in:
ismailgulek
2021-09-07 18:22:54 +03:00
parent d4f3463915
commit cd6d642dce
2 changed files with 30 additions and 0 deletions
+10
View File
@@ -17,11 +17,21 @@
#import "RecentsViewController.h"
/**
Notification to be posted when room list data is ready.
*/
FOUNDATION_EXPORT NSString *const HomeViewControllerRoomListDataReadyNotification;
/**
The `HomeViewController` screen is the main app screen.
*/
@interface HomeViewController : RecentsViewController <UITableViewDataSource, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>
/**
Listen HomeViewControllerRoomListDataReadyNotification for changes.
*/
@property (nonatomic, assign, readonly, getter=isRoomListDataReady) BOOL roomListDataReady;
+ (instancetype)instantiate;
@end