| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // TianTuanHeaderView.m
- // BuguLive
- //
- // Created by 杨仁伟 on 2017/8/8.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "SocietyHeaderView.h"
- @implementation SocietyHeaderView
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.societyBgBtn.layer.cornerRadius = 35;
- self.societyBgBtn.clipsToBounds = YES;
- if (isIPhoneX())
- {
- self.headTopH.constant = 45;
- self.headBottomH.constant = 17;
- }
- else
- {
- self.headTopH.constant = 36;
- self.headBottomH.constant = 26;
- }
- }
- - (IBAction)goBackClick:(id)sender
- {
- [[BGBaseAppDelegate sharedAppDelegate] popViewController];
- }
- @end
|