Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.5 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BAPickView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BAPickView"
s.version = "1.1.4"
s.version = "1.1.5"
s.summary = '目前为止,最为精简的 自定义 pickView 和 日期选择器 封装!'
s.homepage = 'https://github.com/BAHome/BAPickView'
s.license = 'MIT'
Expand Down
4 changes: 2 additions & 2 deletions BAPickView/BAPickView/BAKit_PickerView.m
Original file line number Diff line number Diff line change
Expand Up @@ -1203,8 +1203,8 @@ - (UIPickerView *)pickView
{
if (!_pickView)
{
_pickView = [UIPickerView new];

//小于等于9.3以下的系统初始化要给宽度,不然会出现UIPickerView宽度错误的BUG
_pickView = [[UIPickerView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, kBAKit_PickerView_H)];
[self.bgView addSubview:self.pickView];
}
return _pickView;
Expand Down