728x90 반응형 Develop/IOS2 [IOS] Swift 종료 애니메이션 때때로 App을 종료시켜야 경우가 발생될 수 있다. 다만 App을 그냥 종료시켜 버리면 애플 심사에서 reject을 당할 확률이 높음 따라서 App을 종료시킬때 적당한 안내 문구와 애니메이션을 보여주고 App을 종료하여야 심사를 통과할 수 있다. UIApplication.shared.perform(#selector(NSXPCConnection.suspend)) DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { exit(0) } 2022. 2. 5. [IOS] Swift UILabel Padding UILabel에는 Padding을 적용해주는 속성이 없다. 하기와 같이 CustomView로 Label Padding을 적용함 import Foundation import UIKit @IBDesignable class PaddingLabel: UILabel { @IBInspectable var topPadding: CGFloat = 0.0 @IBInspectable var leftPadding: CGFloat = 0.0 @IBInspectable var bottomPadding: CGFloat = 0.0 @IBInspectable var rightPadding: CGFloat = 0.0 convenience init(padding: UIEdgeInsets) { self.init() self.topPadd.. 2022. 1. 30. 이전 1 다음 728x90 반응형