new ui is almost fully functional

- add hosts
- pair to host
- get app list
- launch app
- resume app
This commit is contained in:
Diego Waxemberg
2014-10-26 02:15:53 -04:00
parent 6fbc55f193
commit 412c5c2516
37 changed files with 480 additions and 180 deletions
+10 -2
View File
@@ -9,8 +9,16 @@
#import <UIKit/UIKit.h>
#import "Computer.h"
@interface UIComputerView : UIView
@protocol HostCallback <NSObject>
- (id) initWithComputer:(Computer*)computer;
- (void) hostClicked:(Computer*)computer;
- (void) addHostClicked;
@end
@interface UIComputerView : UIView
- (id) initWithComputer:(Computer*)computer andCallback:(id<HostCallback>)callback;
- (id) initForAddWithCallback:(id<HostCallback>)callback;
@end