let sortButton: UIButton = {
let button = UIButton(frame: CGRect(x: frame.size.width - 74, y: 10, width: 54, height: 30))
button.addTarget(self, action: #selector(ChallengeViewController.buttonPressed(_:)), for: .touchUpInside)
button.setTitle("최신순", for: .normal)
button.setImage(#imageLiteral(resourceName: "ic_table_sort"), for: .normal)
button.titleLabel?.font = .systemFont(ofSize: 13)
button.setTitleColor(.gray50, for: .normal)
button.contentHorizontalAlignment = .center
button.semanticContentAttribute = .forceRightToLeft //중요
return button
}()