본문 바로가기

ios83

[iOS] UIScrollView contentInsetAdjustmentBehavior How to ignore safe area insets in UIKit | Sarunw Learn how to make UIScrollView, UITableView, and UICollectionView ignore safe area insets and put their content behind that navigation bar. sarunw.com Apple Developer Documentation developer.apple.com contentInsetAdjustmentBehavior safe area inset을 이용해, 어떤 방식으로 ScrollView의 content 영역을 조정할지 정하는 UIScrollView의 프로퍼티 즉, safe area가 있는 디바이스의 경우엔, ScrollV.. 2022. 8. 2.
[iOS] IPA 파일 IPA File Extension - What is an .ipa file and how do I open it? Verified by FileInfo.com The FileInfo.com team has independently researched the iOS Application file format and Mac, Windows, Linux, and iOS apps listed on this page. Our goal is 100% accuracy and we only publish information about file types that we have v fileinfo.com IPA (iOS App Store Package) apple의 iOS device에 설치 가능한 iOS Applic.. 2022. 8. 2.
[iOS] setContentOffset의 animation 시간 조절하기 Change the speed of setContentOffset:animated:? Is there a way to change the speed of the animation when scrolling a UITableView using setContentOffset:animated:? I want to scroll it to the top, but slowly. When I try the following, it causes the stackoverflow.com 일반적으로 scrollView의 setContentOffset의 animation은 이런식으로 호출한다. self.collectionView.setContentOffset(CGPoint(x: 0, y: 0), animated: true) .. 2022. 7. 25.
[iOS] NSAttributedString에 image넣기 NSAttributedString에 image넣기 NSTextAttachment를 이용하면 NSAttributedString에 image를 text에 추가할 수 있다. class ViewController: UIViewController { @IBOutlet weak var label: UILabel! override func viewDidLoad() { super.viewDidLoad() label.attributedText = imageAttributedString(string: "It is an test for info icon") } func imageAttributedString(string: String) -> NSAttributedString { let attributedString = NS.. 2022. 7. 15.