본문 바로가기

분류 전체보기533

[Swift] allSatisfy(_:) Apple Developer Documentation developer.apple.com allSatisfy(_:) sequence 안의 element들이 특정 조건을 모두 만족하는지를 확인할 수 있다. Example import Foundation let numbers = [3, 4, 4, 5, 6, 7, 1, 8] //1이 포함되어 있기 때문에 결과는 false let isBiggerThan2 = numbers.allSatisfy { return $0 > 2 } //모두 0보다 크기 때문에 true let isBiggerThan0 = numbers.allSatisfy { return $0 > 0 } print(isBiggerThan2) print(isBiggerThan0) /* false true */ 2022. 3. 28.
[Swift] Extension에 storedProperty 선언하기 Adding stored properties to an extension - André Salla Almost every iOS developer already faced this not-so-friendly message: Yeah. Extensions cannot contain stored properties. If you need to add a property to a native component, you must create your own button inheriting from UIButton. In my opinion, creating andresalla.com Extension에 storedProperty 선언하기 다들 알다시피 swift의 extension안에는 instance sto.. 2022. 3. 26.
[iOS Issue] UIView.animate에서 constraint 변경 동작 안함 How do I animate constraint changes? I'm updating an old app with an AdBannerView and when there is no ad, it slides off screen. When there is an ad it slides on the screen. Basic stuff. Old style, I set the frame in an animation bloc... stackoverflow.com 아래와 같이 Constraint의 constant 값을 수정해서 UIView의 크기를 조절하는 애니메이션 함수를 만들었다. // // ViewController.swift // Practice // // import UIKit class ViewContr.. 2022. 3. 5.
[이모저모] 2022년 2월 마무리 어느 덧 내일이면 2월도 끝이다.... 와우...! 시간이 정말 쓸데없이 빨리간다. 지난 설 연휴 때 쯤에 1월 마무리 글을 올렸던 것 같은데 어영부영 또 연휴를 기다리다 보니 어느 새 2월이 다 끝났다. 회사 근황 솔직히 이번 1분기는 크게 바쁘진 않다. 원래 있던 TF에서 다른 TF로 올해 2분기까지 지원을 가게 되었는데 옮긴 TF가 현재 크로스 플랫폼으로의 전환 작업을 진행 중이기에 전환 전까지 비즈니스 피쳐를 그렇게 많이 넣지 않을 것 같다. (근데 그 전에 있던 TF들과 달리 일 진행이 시원시원하지 않은 것도 사실이다.) 이번에 새로 맡은 피쳐는 규모가 커서 또 머리가 살살 아파오긴 하는데... 1년동안 일하면서 느낀건데 미리 걱정해도 별 소용없고 막상 닥치면 어떻게든 해결은 되더라... 우크라.. 2022. 2. 27.