본문 바로가기

Programming

(126)
Class: UISwitch A control that offers a binary choice, such as on/off. Declaration class UISwitch : UIControl Overview The UISwitch class declares a property and a method to control its on/off state. As with UISlider, when the user manipulates the switch control (“flips” it), it triggers the valueChanged event. You can customize the appearance of the switch by changing the color used to tint the switch when it ..
Auto Layout Tutorial (2020) - Lesson 2 youtu.be/emojd8GFB0o
View Controller An object that manages a view hierarchy for your UIKit app. Declaration class UIViewController : UIResponder Overview The UIViewController class defines the shared behavior that is common to all view controllers. You rarely create instances of the UIViewController class directly. Instead, you subclass UIViewController and add the methods and properties needed to manage the view controller's view..
Connecting the Stop Recording Button
From Code to UI Element Record 버튼 누른뒤에 원래 있던 문구가 Recording in Progress로 바뀐걸 볼 수 있음.
Pitch Perfect - Adding Code for the Button Button 누를때마다 밑에 Console에 record button was pressed 나타나는 걸 볼 수 있음.
Fixed Constraints
Swift, iOS공부하면서 참고하면 좋은 사이트들 zeddios.tistory.com/162 Swift, iOS공부하면서 참고하면 좋은 사이트들 절대 제가 정리해서 잘 보려고 글 적는거 아닙니다..(크흠..) Swift, iOS공부하면서 참고하면 좋은 사이트들 1. Apple 개발자 사이트 - Xcode사용 가이드 : 만약 Xcode가 처음이라면 반드시 여기를 참고해� zeddios.tistory.com
window Instance Property window The window to use when presenting a storyboard. Declaration optional var window: UIWindow? { get set } Discussion This property contains the window used to present the app’s visual content on the device’s main screen. Implementation of this property is required if your app’s Info.plist file contains the UIMainStoryboardFile key. Fortunately, the Xcode project templates u..
UIStackView A streamlined interface for laying out a collection of views in either a column or a row. Declaration class UIStackView : UIView Overview Stack views let you leverage the power of Auto Layout, creating user interfaces that can dynamically adapt to the device’s orientation, screen size, and any changes in the available space. The stack view manages the layout of all the views in its arrangedSubvi..