Notice
Recent Posts
Recent Comments
Link
투케이2K
135. (Objective-C/objc) UIColor alloc 사용 및 backgroundColor 사용해 배경 색상 지정 본문
Objective-C
135. (Objective-C/objc) UIColor alloc 사용 및 backgroundColor 사용해 배경 색상 지정
투케이2K 2023. 10. 21. 23:47[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[소스 코드]
// ------------------------------------------------------------------------------
// MARK: - [뷰 로드 실시]
// ------------------------------------------------------------------------------
- (void)viewDidLoad {
[super viewDidLoad];
[S_Log _D_WithC_:[NSString stringWithFormat:@"%s", __FILE__]
M_:[NSString stringWithFormat:@"%s :: %d", __FUNCTION__, __LINE__]
description:@"뷰 로드 실시" data:nil];
// -----------------------------------------
// MARK: [뷰 컨트롤러 배경 색상 지정]
// -----------------------------------------
UIColor *colour = [[UIColor alloc]initWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0];
self.view.backgroundColor = colour;
// -----------------------------------------
}
반응형
'Objective-C' 카테고리의 다른 글
Comments