异常时间段提示,及可删除
This commit is contained in:
parent
b2dd59a509
commit
7c5930b6d0
|
|
@ -15817,7 +15817,7 @@
|
||||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 2;
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
|
@ -15892,7 +15892,7 @@
|
||||||
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrlIOS/libAVCtrl",
|
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrlIOS/libAVCtrl",
|
||||||
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrl",
|
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrl",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 5.1.15;
|
MARKETING_VERSION = 5.1.16;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"-ObjC",
|
"-ObjC",
|
||||||
|
|
@ -15935,7 +15935,7 @@
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 2;
|
CURRENT_PROJECT_VERSION = 1;
|
||||||
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
|
@ -16010,7 +16010,7 @@
|
||||||
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrlIOS/libAVCtrl",
|
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrlIOS/libAVCtrl",
|
||||||
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrl",
|
"$(PROJECT_DIR)/Ifish/controllers/IfishYooseeFile/IfishYsooseeNewLib/libAVCtrl",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 5.1.15;
|
MARKETING_VERSION = 5.1.16;
|
||||||
ONLY_ACTIVE_ARCH = NO;
|
ONLY_ACTIVE_ARCH = NO;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"-ObjC",
|
"-ObjC",
|
||||||
|
|
|
||||||
|
|
@ -260,6 +260,10 @@
|
||||||
NSString*shiString=@"";
|
NSString*shiString=@"";
|
||||||
NSString*fenString=@"";
|
NSString*fenString=@"";
|
||||||
UInt64 shi =strtoul([[hexString substringWithRange:NSMakeRange(0, 2)] UTF8String], 0, 16);
|
UInt64 shi =strtoul([[hexString substringWithRange:NSMakeRange(0, 2)] UTF8String], 0, 16);
|
||||||
|
if(shi>23)
|
||||||
|
{
|
||||||
|
[[UIApplication sharedApplication].delegate.window makeToast:@"数据异常,请删除或重新设置"];
|
||||||
|
}
|
||||||
|
|
||||||
shiString=[NSString stringWithFormat:@"%llu",shi];
|
shiString=[NSString stringWithFormat:@"%llu",shi];
|
||||||
if ([shiString isEqualToString:@"0"]) {
|
if ([shiString isEqualToString:@"0"]) {
|
||||||
|
|
|
||||||
|
|
@ -795,12 +795,31 @@ static NSString *setTimerflag = @"SetTimerCell";
|
||||||
NSLog(@"stat %@ end %@",startArr,endArr);
|
NSLog(@"stat %@ end %@",startArr,endArr);
|
||||||
if (startArr.count == 2 && endArr.count == 2) {
|
if (startArr.count == 2 && endArr.count == 2) {
|
||||||
NSInteger row1 = [[_mydatepicView.dataArr objectAtIndex:0] indexOfObject:startArr[0]];
|
NSInteger row1 = [[_mydatepicView.dataArr objectAtIndex:0] indexOfObject:startArr[0]];
|
||||||
|
if (row1==NSNotFound)
|
||||||
|
{
|
||||||
|
row1=0;
|
||||||
|
}
|
||||||
[_mydatepicView.picView selectRow:row1 inComponent:0 animated:NO];
|
[_mydatepicView.picView selectRow:row1 inComponent:0 animated:NO];
|
||||||
NSInteger row2 = [[_mydatepicView.dataArr objectAtIndex:1] indexOfObject:startArr[1]];
|
NSInteger row2 = [[_mydatepicView.dataArr objectAtIndex:1] indexOfObject:startArr[1]];
|
||||||
|
if (row2==NSNotFound)
|
||||||
|
{
|
||||||
|
row2=0;
|
||||||
|
}
|
||||||
|
|
||||||
[_mydatepicView.picView selectRow:row2 inComponent:1 animated:NO];
|
[_mydatepicView.picView selectRow:row2 inComponent:1 animated:NO];
|
||||||
NSInteger row3 = [[_mydatepicView.dataArr objectAtIndex:2] indexOfObject:endArr[0]];
|
NSInteger row3 = [[_mydatepicView.dataArr objectAtIndex:2] indexOfObject:endArr[0]];
|
||||||
|
if (row3==NSNotFound)
|
||||||
|
{
|
||||||
|
row3=0;
|
||||||
|
}
|
||||||
|
|
||||||
[_mydatepicView.picView selectRow:row3 inComponent:2 animated:NO];
|
[_mydatepicView.picView selectRow:row3 inComponent:2 animated:NO];
|
||||||
NSInteger row4 = [[_mydatepicView.dataArr objectAtIndex:3] indexOfObject:endArr[1]];
|
NSInteger row4 = [[_mydatepicView.dataArr objectAtIndex:3] indexOfObject:endArr[1]];
|
||||||
|
if (row4==NSNotFound)
|
||||||
|
{
|
||||||
|
row4=0;
|
||||||
|
}
|
||||||
|
|
||||||
[_mydatepicView.picView selectRow:row4 inComponent:3 animated:NO];
|
[_mydatepicView.picView selectRow:row4 inComponent:3 animated:NO];
|
||||||
|
|
||||||
_mydatepicView.startString = startArr[0];
|
_mydatepicView.startString = startArr[0];
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
// CFShow((__bridge CFTypeRef)(infoDic));
|
// CFShow((__bridge CFTypeRef)(infoDic));
|
||||||
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
||||||
NSLog(@"app_Version%@",app_Version);
|
NSLog(@"app_Version%@",app_Version);
|
||||||
app_Version=@"4.7.15";
|
app_Version=@"4.7.16";
|
||||||
NSString *versionStr = [NSString stringWithFormat:@"v%@",app_Version];
|
NSString *versionStr = [NSString stringWithFormat:@"v%@",app_Version];
|
||||||
NSString *buildVersion = [infoDic objectForKey:@"CFBundleVersion"];
|
NSString *buildVersion = [infoDic objectForKey:@"CFBundleVersion"];
|
||||||
if (buildVersion.length > 0) {
|
if (buildVersion.length > 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue