Commit 79976f0e authored by Achilles's avatar Achilles

statement

parent 4d3b1e20
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#import "VankeAffairsBoard_iPhone.h" #import "VankeAffairsBoard_iPhone.h"
#import "VankeUtil.h" #import "VankeUtil.h"
#import "VankeAppBoard_iPhone.h"
#import "VankeNoticeListBoard_iPhone.h" #import "VankeNoticeListBoard_iPhone.h"
#import "VankeStatementListBoard_iPhone.h" #import "VankeStatementListBoard_iPhone.h"
...@@ -70,6 +71,7 @@ ON_WILL_APPEAR( signal ) ...@@ -70,6 +71,7 @@ ON_WILL_APPEAR( signal )
} else { } else {
self.navigationController.navigationBar.tintColor = color; self.navigationController.navigationBar.tintColor = color;
} }
[[VankeAppBoard_iPhone sharedInstance] showMenu];
} }
ON_DID_APPEAR( signal ) ON_DID_APPEAR( signal )
...@@ -84,12 +86,14 @@ ON_DID_DISAPPEAR( signal ) ...@@ -84,12 +86,14 @@ ON_DID_DISAPPEAR( signal )
{ {
} }
ON_SIGNAL3(VankeAffairsBoard_iPhone, btnNotice, signal) { ON_SIGNAL3(VankeAffairsBoard_iPhone, btnNotice, signal) {
[[VankeAppBoard_iPhone sharedInstance] hideMenu];
VankeNoticeListBoard_iPhone *board = [VankeNoticeListBoard_iPhone board]; VankeNoticeListBoard_iPhone *board = [VankeNoticeListBoard_iPhone board];
[self.stack pushBoard:board animated:YES]; [self.stack pushBoard:board animated:YES];
} }
ON_SIGNAL3(VankeAffairsBoard_iPhone, btnBill, signal) { ON_SIGNAL3(VankeAffairsBoard_iPhone, btnBill, signal) {
[[VankeAppBoard_iPhone sharedInstance] hideMenu];
VankeStatementListBoard_iPhone *board = [VankeStatementListBoard_iPhone board]; VankeStatementListBoard_iPhone *board = [VankeStatementListBoard_iPhone board];
[self.stack pushBoard:board animated:YES]; [self.stack pushBoard:board animated:YES];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment