Skip to content

Commit

Permalink
修改细节
Browse files Browse the repository at this point in the history
  • Loading branch information
woaomo committed Sep 5, 2015
1 parent 6db0396 commit 7635f3e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions YHB_Prj/YHB_Prj/Jicunchaxun/JCCXSXViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -169,25 +169,29 @@ - (void)okButtonItem
[self.manager setCurrentVipid:_strVipeId];
}
}
BOOL isHaveChange = NO;
if (_YDCXmanager)
{
if (self.strEndTime&& _strEndTime.length > 0)
{
isHaveChange = YES;
[_YDCXmanager setEndTime:_strEndTime];
}
if(self.strStartTime &&self.strStartTime.length>0)
{
isHaveChange = YES;
[_YDCXmanager setStartTime:self.strStartTime];
}
if(self.strVipeId)
{
isHaveChange = YES;
[_YDCXmanager setCurrentVipid:_strVipeId];
}
}
if (_myPopBlock) {
if (_myPopBlock && isHaveChange==YES) {
_myPopBlock();
[self.navigationController popViewControllerAnimated:YES];
}
[self.navigationController popViewControllerAnimated:YES];
}

- (void)didReceiveMemoryWarning {
Expand Down

0 comments on commit 7635f3e

Please sign in to comment.