GCKUIButton 클래스

GCKUIButton 클래스 참조

개요

맞춤 애플리케이션 상태를 지원하는 UIButton의 서브클래스입니다.

이러한 상태는 버튼의 state 속성 값에 OR로 연결되어 애플리케이션별 상태를 추가로 제공합니다. 이미지를 다음과 같은 맞춤 상태에 할당할 수 있습니다. 예를 들면 다음과 같습니다.

[button setImage:[UIImage imageNamed:@"myCustomStateImage"]
forState:(UIControlStateNormal | kMyControlStateCustom)];

애플리케이션 상태 값은 UIControlStateApplication 비트마스크에 설정된 비트만 사용해야 합니다.

Deprecated:
GCKUIMultistateButton를 사용합니다.
다음 이후:
3.0

GCKUIMultistateButton를 상속합니다.

인스턴스 메서드 요약

(void) - setImage:forButtonState:
 지정된 버튼 상태에 대해 표시할 이미지를 설정합니다. 더보기...
 

속성 요약

UIControlState applicationState
 버튼의 애플리케이션 상태입니다. 더보기...
 
NSUInteger buttonState
 버튼의 애플리케이션 상태입니다. 더보기...
 

메서드 세부정보

- (void) setImage: (UIImage *)  image
forButtonState: (NSUInteger)  buttonState 

지정된 버튼 상태에 대해 표시할 이미지를 설정합니다.

Parameters
imageThe image.
buttonStateThe button state.

부동산 세부정보

- (UIControlState) applicationState
readwritenonatomicassign

버튼의 애플리케이션 상태입니다.

이 상태는 버튼의 기존 상태에 OR 적용됩니다.

- (NSUInteger) buttonState
readwritenonatomicassigninherited

버튼의 애플리케이션 상태입니다.