タグ付けされた質問 「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 that I can set the width property of the button before addSubview [button setFrame:CGRectMake(10, 0, width, fixedHeight)]; [subNavigation addSubview:button];
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" myFirstLabel.font = UIFont(name: "MarkerFelt-Thin", size: 45) myFirstLabel.textColor = UIColor.redColor() myFirstLabel.textAlignment = .Center …
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のを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 = 1; self.circleView.userInteractionEnabled = NO; self.circleView.translatesAutoresizingMaskIntoConstraints = NO; [self addSubview:self.circleView]; self.iconView = [[UIImageView alloc]init]; [self.iconView setContentMode:UIViewContentModeScaleAspectFit]; UIImage * …

15
iPhone UIButton-画像の位置
私が持っているUIButton「アプリを探検」とテキストでのUIImage(>)でInterface Builder、それは次のようになります。 [ (>) Explore the app ] しかし、私UIImageはテキストの後にこれを配置する必要があります: [ Explore the app (>) ] をUIImage右に移動するにはどうすればよいですか?

12
SwiftでUIButtonイメージを変更する方法
Swiftを使用してUIButtonの画像を変更しようとしています...どうすればよいですか これはOBJ-Cコードですが、Swiftではわかりません: [playButton setImage:[UIImage imageNamed:@"play.png"] forState:UIControlStateNormal];
111 ios  xcode  swift  uibutton 

16
UIButtonsの背景色を変更することは可能ですか?
これは私が困惑しています。 Cocoa for iPhoneでUIButtonの背景色を変更することはまったく可能ですか?背景色を設定してみましたが、角だけが変わります。setBackgroundColor:そのようなものに利用できる唯一の方法のようです。 [random setBackgroundColor:[UIColor blueColor]]; [random.titleLabel setBackgroundColor:[UIColor blueColor]];

9
Xcodeでプログラムによってボタンにアクションを追加するにはどうすればよいですか
インターフェイスビルダーからドラッグしてボタンにIBActionを追加する方法を知っていますが、プログラムでアクションを追加して時間を節約し、頻繁に切り替えられないようにします。解決策はおそらく本当に簡単ですが、検索しても答えが見つからないようです。ありがとうございました!

21
UIButtonがiPhoneのアスペクトフィットに移動しない
私はいくつかのUIButtonを持っていますが、IBではそれらはAspect Fitに設定されていますが、何らかの理由で常に伸縮しています。他に設定する必要があるものはありますか?私はすべての異なる表示モードを試しましたが、どれも機能せず、すべて伸びています。


7
UIButtonテキストの変更
だから私はそれをクリックしたときにUIButtonのテキストを更新しようとしています。次の行を使用してテキストを変更しています。 calibrationButton.titleLabel.text = @"Calibration"; テキストが変更されていることを確認しましたが、アプリを実行してボタンをクリックすると、テキストが一瞬「校正」に変わり、すぐにデフォルト値に戻ります。なぜこれが起こっているのでしょうか?呼び出す必要があるある種のリフレッシュ関数はありますか?

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.