We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
(id)initWithScrollView:(UIScrollView *)scroll { CGRect frame = CGRectMake(0.0f, 0.0f - scroll.bounds.size.height, scroll.bounds.size.width, scroll.bounds.size.height);
if ((self = [super initWithFrame:frame])) {
//...................
statusLabel = [[UILabel alloc] init]; //add by yager statusLabel.frame = CGRectMake(0.0f, frame.size.height - 48.0f, self.frame.size.width, 20.0f); statusLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth; statusLabel.font = [UIFont systemFontOfSize:12.f]; statusLabel.textColor = kPullToRefreshViewTitleColor; statusLabel.shadowColor = [UIColor colorWithWhite:0.9f alpha:1.0f]; statusLabel.shadowOffset = CGSizeMake(0.0f, 1.0f); statusLabel.backgroundColor = [UIColor clearColor]; statusLabel.textAlignment = UITextAlignmentCenter; [self addSubview:statusLabel];
//add by yager [self setState:kPullToRefreshViewStateNormal];
}
return self; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
(id)initWithScrollView:(UIScrollView *)scroll {
CGRect frame = CGRectMake(0.0f, 0.0f - scroll.bounds.size.height, scroll.bounds.size.width, scroll.bounds.size.height);
if ((self = [super initWithFrame:frame])) {
//...................
//...................
}
return self;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
The text was updated successfully, but these errors were encountered: