Summary
사용자 상호 작용에 대한 응답으로 사용자 지정 코드를 실행하는 컨트롤입니다.
A control that executes your custom code in response to user interactions.
Declaration
class UIButton : UIControl
Discussion
버튼을 탭하거나 포커스가 있는 버튼을 선택하면 버튼에 연결된 작업이 수행됩니다. 텍스트 레이블, 이미지 또는 둘 다 사용하여 단추의 용도를 알려줍니다. 단추 모양을 구성 할 수 있으므로 단추를 색조로 지정하거나 제목을 형식화하여 앱 디자인에 맞출 수 있습니다. 프로그래밍 방식으로 또는 Interface Builder를 사용하여 인터페이스에 버튼을 추가 할 수 있습니다.
When you tap a button, or select a button that has focus, the button performs any actions attached to it. You communicate the purpose of a button using a text label, an image, or both. The appearance of buttons is configurable, so you can tint buttons or format titles to match the design of your app. You can add buttons to your interface programmatically or using Interface Builder.
인터페이스에 버튼을 추가 할 때 다음 단계를 수행하십시오.
- 생성시 버튼 유형을 설정하십시오.
- 제목 문자열 또는 이미지를 제공하십시오. 콘텐츠에 맞게 버튼의 크기를 조정하십시오.
- 하나 이상의 동작 방법을 버튼에 연결하십시오.
- 인터페이스에서 버튼의 크기와 위치를 제어하도록 자동 레이아웃 규칙을 설정하십시오.
- 접근성 정보 및 현지화 된 문자열을 제공하십시오.
When adding a button to your interface, perform the following steps:
-
Set the type of the button at creation time.
-
Supply a title string or image; size the button appropriately for your content.
-
Connect one or more action methods to the button.
-
Set up Auto Layout rules to govern the size and position of the button in your interface.
-
Provide accessibility information and localized strings.
[출처 : Open in Developer Documentation ]
'IOS 개발' 카테고리의 다른 글
[iOS] init() (0) | 2020.02.24 |
---|---|
Using API Functionality (0) | 2020.02.21 |
[iOS] 특수문자 (특수기호) 뜻 (0) | 2020.02.10 |
[iOS] class Bundle : NSObject (0) | 2020.02.10 |
[iOS] viewDidLoad() (0) | 2020.02.07 |