18 lines
394 B
Objective-C
18 lines
394 B
Objective-C
//
|
|
// XuanduoSectionHeaderView.m
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/4/28.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "XuanduoSectionHeaderView.h"
|
|
|
|
@implementation XuanduoSectionHeaderView
|
|
|
|
+ (instancetype)shareHeaderView {
|
|
return [[NSBundle mainBundle] loadNibNamed:NSStringFromClass([XuanduoSectionHeaderView class]) owner:nil options:nil].lastObject;
|
|
|
|
}
|
|
@end
|