기본 UIButton을 프로그래밍 방식으로 만들려면 어떻게 해야 합니까? 기본 사항을 작성하려면 어떻게 해야 합니까?UIButton프로그래밍 방식으로?예를 들어 내 보기 컨트롤러에서 실행할 때viewDidLoad방법, 3UIButtons가 동적으로 생성되고 해당 레이아웃 또는 속성이 설정됩니다.여기 하나 있습니다. UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; [button addTarget:self action:@selector(aMethod:) forControlEvents:UIControlEventTouchUpInside]; [button setTitle:@"Show View" forState:UIControlStateNormal..