mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-19 18:24:13 +08:00
52 lines
1.7 KiB
Objective-C
52 lines
1.7 KiB
Objective-C
//
|
|
// ListHeaderView.m
|
|
// RETableViewManagerExample
|
|
//
|
|
// Created by Roman Efimov on 4/2/13.
|
|
// Copyright (c) 2013 Roman Efimov. All rights reserved.
|
|
//
|
|
|
|
#import "ListHeaderView.h"
|
|
|
|
@interface ListHeaderView ()
|
|
|
|
@property (strong, readwrite, nonatomic) UIImageView *userpicImageView;
|
|
@property (strong, readwrite, nonatomic) UILabel *usernameLabel;
|
|
|
|
@end
|
|
|
|
@implementation ListHeaderView
|
|
|
|
+ (ListHeaderView *)headerViewWithImageNamed:(NSString *)imageNamed username:(NSString *)username
|
|
{
|
|
ListHeaderView *view = [[ListHeaderView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
|
|
[view.userpicImageView setImage:[UIImage imageNamed:imageNamed]];
|
|
[view.usernameLabel setText:username];
|
|
return view;
|
|
}
|
|
|
|
- (id)initWithFrame:(CGRect)frame
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
if (self) {
|
|
self.autoresizingMask = UIViewAutoresizingFlexibleWidth;
|
|
UIView *backgroundView = [[UIView alloc] initWithFrame:self.bounds];
|
|
backgroundView.backgroundColor = [UIColor whiteColor];
|
|
backgroundView.alpha = 0.9;
|
|
backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
|
|
[self addSubview:backgroundView];
|
|
|
|
self.userpicImageView = [[UIImageView alloc] initWithFrame:CGRectMake(7, 7, 30, 30)];
|
|
[self addSubview:self.userpicImageView];
|
|
|
|
self.usernameLabel = [[UILabel alloc] initWithFrame:CGRectMake(45, 3, 276, 35)];
|
|
self.usernameLabel.font = [UIFont boldSystemFontOfSize:14];
|
|
self.usernameLabel.textColor = [UIColor blackColor];
|
|
self.usernameLabel.backgroundColor = [UIColor clearColor];
|
|
[self addSubview:self.usernameLabel];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|