Azraeltulips

Results 8 comments of Azraeltulips

`#pragma mark - CustomBox - (CRBoxInputView *)generateBoxInputView_customBox { CRBoxInputCellProperty *cellProperty = [CRBoxInputCellProperty new]; cellProperty.cellBgColorNormal = color_FFECEC; cellProperty.cellBgColorSelected = [UIColor whiteColor]; cellProperty.cellCursorColor = color_master; cellProperty.cellCursorWidth = 2; cellProperty.cellCursorHeight = YY_6(27); cellProperty.cornerRadius...

> 我也碰到了, 兄弟, 有解决吗 textField有个自动联想的属性autocorrectionType设置为no。然后要过滤一下中文,因为iPhone有一个自带的快捷文本,英文键盘输入msd,会有一个马上到的弹窗。 `// MARK: ===============检查文字是否是中文=============== private func checkStringIsChinese(_ string: String) -> Bool { for character in string { if character >= "\u{4E00}" && character

iOS13多了一个SceneDelegate类,导致获取不到window了

在源码SVProgressHUD.m文件中第638行self.frame = [[[UIApplication sharedApplication] delegate] window].bounds这句改成 self.frame= [UIApplication sharedApplication].keyWindow.bounds这个应该就可以了

> > 在源码SVProgressHUD.m文件中第638行self.frame = [[[UIApplication sharedApplication] delegate] window].bounds这句改成 > > self.frame= [UIApplication sharedApplication].keyWindow.bounds这个应该就可以了 > > 改了还是不行: > > * (void)positionHUD:(NSNotification*)notification { > CGFloat keyboardHeight = 0.0f; > double animationDuration =...

> > > 在源码SVProgressHUD.m文件中第638行self.frame = [[[UIApplication sharedApplication] delegate] window].bounds这句改成 > > > self.frame= [UIApplication sharedApplication].keyWindow.bounds这个应该就可以了 > > > > > > 改了还是不行: > > > > * (void)positionHUD:(NSNotification*)notification { >...

contentOffset这个不是只读属性吗?也能修改? 我也遇到这个问题了,item滚动时点一下 就停止了

补充:虽然有BRDatePickerModeHM,但这个样式不能循环滚动,在滚动到23时,需要回头滚动