Skip to content

Commit

Permalink
closeBt을 이미지에서 string으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
klsayhtg committed Nov 8, 2018
1 parent e0842e0 commit 2c9f22f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,11 @@ - (void)makeBottomBar {

CGFloat closeBtnOriginX = btnWidth * 3;
_closeBt = [[UIButton alloc] initWithFrame:CGRectMake(closeBtnOriginX, 0, btnWidth, btnHeight)];

[_closeBt setImage:[UIImage imageNamed:@"NaverAuth.bundle/btn_notice_close_normal.png"] forState:UIControlStateNormal];
// [_closeBt setImage:[UIImage imageNamed:@"NaverAuth.bundle/btn_notice_close_normal.png"] forState:UIControlStateNormal];
[_closeBt addTarget:self action:@selector(closeBtAction:) forControlEvents:UIControlEventTouchUpInside];
[_closeBt setTitle:@"닫기" forState:UIControlStateNormal];
[_closeBt setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[_bottomBar addSubview:_closeBt];
}

Expand Down

0 comments on commit 2c9f22f

Please sign in to comment.