UIButton 제목 색상을 변경하려면 어떻게 해야 합니까? 프로그래밍 방식으로 단추를 만듭니다... button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [button addTarget:self action:@selector(aMethod:) forControlEvents:UIControlEventTouchDown]; [button setTitle:@"Show View" forState:UIControlStateNormal]; button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0); [view addSubview:button]; 제목 색상을 변경하려면 어떻게 해야 합니까?사용할 수 있습니다.-[UIButton s..