我正在通过phpexcel在Excel工作表上使用日期验证,但是每次它说的是错误的日期。
但是当我单击Excel工作表上的验证但不执行任何操作时,只需单击“确定”,验证就开始起作用。
tagView.clipsToBounds = YES;
tagView.layer.cornerRadius = 20.0f;
tagView.backgroundColor = [UIColor groupTableViewBackgroundColor];
CAShapeLayer *yourViewBorder = [CAShapeLayer layer];
yourViewBorder.strokeColor = [UIColor blackColor].CGColor;
yourViewBorder.fillColor = nil;
yourViewBorder.lineDashPattern = @[@2, @2];
yourViewBorder.frame = tagView.bounds;
// Create the path for to make circle
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:tagView.bounds
byRoundingCorners:UIRectCornerAllCorners
cornerRadii:CGSizeMake(20, 20)];
yourViewBorder.path = maskPath.CGPath;
[tagView.layer addSublayer:yourViewBorder];
这是我的代码,请帮助。
该代码似乎可以正常工作,因为excel上的“验证”选项卡显示了正确的excel。但不知何故。只需单击“确定”即可再次开始工作。