我想添加startdate和enddate,所以我为 startdate 和 enddate 创建了两个不同的datecontroller类。
当我第一次进入时,我的状况良好,并且也以良好的方式保存在数据库中。但是,如果我更新然后单击保存消息,那么我会在我的代码中收到警报消息块。我希望开始日期必须小于或等于结束日期值。
这是我的代码,它仅在我第一次在数据库表中插入值时才起作用。如果我更新并单击保存按钮,那么它的检查条件和在该值中获取数据库旧值开始日期和结束日期如何解决这个问题?
当我回来时,我穿上这个NSLog
message 2012-08-07 14:21:08.047 People[17111:207] *****:2012-08-06 18:30:00 +0000
2012-08-07 14:22:54.752 People[17111:207] *****:2012-08-06 18:30:00 +0000
我的代码:-
-(IBAction)plusSignTapped:(id)sender
{
NSComparisonResult result = [firstobj.StartDate compare: firstobj.EndDate];
NSLog(@"*****:%@", firstobj.StartDate);
NSLog(@"*****:%@", firstobj.EndDate);
if( result == NSOrderedDescending || result==NSOrderedSame)
{
UIAlertView* alert=[[UIAlertView alloc] initWithTitle:@"test" message:@"End date should be greater than or equal to start date " delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
return;
}
}