File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ import Foundation
1010struct Links {
1111 static let authorPDA = " https://4pda.to/forum/index.php?showuser=3640948 "
1212 static let telegramNews = " https://t.me/forpda_ios "
13- static let telegramChat = " https://t.me/forpda_ios_discussions "
13+ static let telegramChat = " https://t.me/forpda_ios_chat "
1414}
Original file line number Diff line number Diff line change @@ -14,9 +14,10 @@ final class MenuAuthCell: UITableViewCell {
1414 private( set) var iconImageView : UIImageView = {
1515 let imageView = UIImageView ( )
1616 imageView. image = R . image. avatarPlaceholder ( )
17- // imageView.clipsToBounds = true
18- // imageView.layer.cornerRadius = 22
17+ imageView. clipsToBounds = true
18+ imageView. layer. cornerRadius = 22
1919 imageView. contentMode = . scaleAspectFit
20+ imageView. backgroundColor = . black
2021 return imageView
2122 } ( )
2223
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ final class MenuVC: PDAViewController<MenuView> {
3434 configureNavBar ( )
3535 }
3636
37+ override func viewWillAppear( _ animated: Bool ) {
38+ super. viewWillAppear ( animated)
39+ navigationController? . setNavigationBarHidden ( true , animated: false )
40+ }
41+
3742 override func viewWillDisappear( _ animated: Bool ) {
3843 super. viewWillDisappear ( animated)
3944 navigationController? . setNavigationBarHidden ( false , animated: true )
You can’t perform that action at this time.
0 commit comments