From 2c9f22f19c7f8f06d44bde5aef8819ac67c0dd43 Mon Sep 17 00:00:00 2001 From: Jiwoong Park Date: Thu, 8 Nov 2018 16:25:53 +0900 Subject: [PATCH] =?UTF-8?q?closeBt=EC=9D=84=20=EC=9D=B4=EB=AF=B8=EC=A7=80?= =?UTF-8?q?=EC=97=90=EC=84=9C=20string=EC=9C=BC=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../NLoginThirdPartyOAuth20InAppBrowserViewController.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ios/NaverAuth/thirdPartyModule/NLoginThirdPartyOAuth20InAppBrowserViewController.m b/ios/NaverAuth/thirdPartyModule/NLoginThirdPartyOAuth20InAppBrowserViewController.m index 71669c5..178ee35 100644 --- a/ios/NaverAuth/thirdPartyModule/NLoginThirdPartyOAuth20InAppBrowserViewController.m +++ b/ios/NaverAuth/thirdPartyModule/NLoginThirdPartyOAuth20InAppBrowserViewController.m @@ -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]; }