«uibutton» 태그된 질문

UIButton은 iOS에서 버튼을 표시하기위한 UIView의 하위 클래스입니다. 대상 동작 패러다임을 구현하여 이벤트를 컨트롤러 계층으로 보냅니다.

15
UIButton의 텍스트 정렬 센터를 만드는 방법은 무엇입니까? IB 사용
IB를 중심으로 사용하여 UIButton의 제목을 설정할 수 없습니다. 내 제목은 여러 줄입니다. 이렇게해서 하지만 난 이걸 좋아해 나는 이것에 공간을 주었지만 그렇게하고 싶지 않습니다. 어떤 경우에는 정확하게 정렬되지 않고 정렬을 설정하는 UILabel 속성이 있지만 그 코드를 작성하고 싶지 않습니다. IB에서 모든 것을 설정하고 싶습니다. 감사

19
비활성화 된 UIButton이 희미하거나 회색이 아닙니다
내 iPhone 앱에는 Interface Builder에서 만든 UIButton이 있습니다. 내 코드에서 이와 같이 성공적으로 활성화 및 비활성화 할 수 있습니다 ... sendButton.enabled = YES; 또는 sendButton.enabled = NO; 그러나 버튼의 시각적 모양은 항상 동일합니다! 희미하거나 회색이 아닙니다. 그래도 클릭하면 예상대로 활성화 또는 비활성화됩니다. 뭔가 빠졌습니까? 희미 해 지거나 회색으로 보입니까?

14
iOS : 텍스트 길이에 따라 UIButton 크기 조정
인터페이스 빌더에서 Command + =를 누르면 텍스트에 맞게 단추 크기가 조정됩니다. 버튼이보기에 추가되기 전에 프로그래밍 방식으로 수행 할 수 있는지 궁금합니다. UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; [button.titleLabel setFont:[UIFont fontWithName:@"Arial-BoldMT" size:12]]; [button addTarget:self action:@selector(buttonTapped:) forControlEvents:UIControlEventTouchUpInside]; // I need to know the width needed to accomodate NSStringVariable [button setTitle:NSStringVariable forState:UIControlStateNormal]; // So …
134 ios  uibutton 

19
Swift에서 프로그래밍 방식으로 UIButton 만들기
프로그래밍 방식으로 UI를 작성하려고합니다. 이 작업을 어떻게 수행합니까? Swift로 개발 중입니다. viewDidLoad의 코드 : override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. let myFirstLabel = UILabel() let myFirstButton = UIButton() myFirstLabel.text = "I made a label on the screen #toogood4you" …
130 ios  uibutton  swift 


6
UIButton의 제목 텍스트 색상을 설정하는 방법은 무엇입니까?
버튼의 텍스트 색상을 변경해 보았지만 여전히 흰색으로 유지됩니다. isbeauty = UIButton() isbeauty.setTitle("Buy", forState: UIControlState.Normal) isbeauty.titleLabel?.textColor = UIColorFromRGB("F21B3F") isbeauty.titleLabel!.font = UIFont(name: "AppleSDGothicNeo-Thin" , size: 25) isbeauty.backgroundColor = UIColor.clearColor() isbeauty.layer.cornerRadius = 5 isbeauty.layer.borderWidth = 1 isbeauty.layer.borderColor = UIColorFromRGB("F21B3F").CGColor isbeauty.frame = CGRectMake(300, 134, 55, 26) isbeauty.addTarget(self,action: "first:", forControlEvents: UIControlEvents.TouchUpInside) self.view.addSubview(isbeauty) 나는 또한 그것을 …
124 ios  swift  uibutton 

4
UIButton의 titleLabel에 대한 x, y 위치를 조정할 수 있습니까?
그것을위한 X, Y 위치를 조정할 수있다 titleLabel(A)의를 UIButton? 내 코드는 다음과 같습니다. UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [btn setFrame:CGRectMake(0.0f, 0.0f, 100.0f, 100.0f)]; [btn setTitle:[NSString stringWithFormat:@"Button %d", i+1] forState:UIControlStateNormal]; [btn addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside]; btn.titleLabel.frame = ???

9
UIImageView에서 색조 색상 사용
나만의 하위 클래스가 UIButton있습니다. 나는 UIImageView그것에 추가하고 이미지를 추가합니다. 이미지 위에 틴트 컬러로 칠하고 싶은데 작동하지 않습니다. 지금까지 : - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { self.backgroundColor = [UIColor clearColor]; self.clipsToBounds = YES; self.circleView = [[UIView alloc]init]; self.circleView.backgroundColor = [UIColor whiteColor]; self.circleView.layer.borderColor = [[Color getGraySeparatorColor]CGColor]; self.circleView.layer.borderWidth = …

15
iPhone UIButton-이미지 위치
나는이 UIButton"응용 프로그램을 탐색"및 텍스트를 UIImage(>)에서 Interface Builder는 다음과 같습니다 [ (>) Explore the app ] 그러나 나는 이것을 UIImage텍스트 뒤에 배치해야 합니다. [ Explore the app (>) ] 를 UIImage오른쪽으로 이동하려면 어떻게 해야합니까?


16
UIButtons 배경색을 변경할 수 있습니까?
이것은 나를 어리둥절하게 만듭니다. iPhone 용 Cocoa에서 UIButton의 배경색을 변경할 수 있습니까? 배경색 설정을 시도했지만 모서리 만 변경합니다. setBackgroundColor:그런 일에 사용할 수있는 유일한 방법 인 것 같습니다. [random setBackgroundColor:[UIColor blueColor]]; [random.titleLabel setBackgroundColor:[UIColor blueColor]];

9
xcode에서 프로그래밍 방식으로 버튼에 액션을 추가하는 방법
인터페이스 빌더에서 드래그하여 버튼에 IBAction을 추가하는 방법을 알고 있지만 시간을 절약하고 지속적으로 앞뒤로 전환하는 것을 방지하기 위해 작업을 프로그래밍 방식으로 추가하고 싶습니다. 해결책은 아마도 정말 간단 할 것입니다.하지만 검색 할 때 답을 찾을 수없는 것 같습니다. 감사합니다!



7
UIButton 텍스트 변경
그래서 클릭하면 UIButton의 텍스트를 업데이트하려고합니다. 다음 줄을 사용하여 텍스트를 변경하고 있습니다. calibrationButton.titleLabel.text = @"Calibration"; 텍스트가 변경되고 있음을 확인했지만 앱을 실행하고 버튼을 클릭하면 잠시 "Calibration"으로 변경된 다음 기본값으로 바로 돌아갑니다. 왜 이런 일이 일어날 지 아이디어가 있습니까? 호출해야 할 일종의 새로 고침 기능이 있습니까?

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.