このプログラムを実行しても、望ましい結果が得られません。私が構築しようとしているのは、UITextField でユーザーからテキストを取得するアトリビューター プログラムです。更新ボタンをクリックすると、テキスト フィールドの上の UILabel にテキストが表示されます。それが機能したら、テキストを編集するためのボタンを追加します。
#import "TextChangerViewController.h"
@interface TextChangerViewController ()
@property (strong, nonatomic) IBOutlet UITextField *textInput;
@property (strong, nonatomic) IBOutlet UILabel *textOutput;
@property (strong, nonatomic) IBOutlet UIButton *updateButton;
@end
@implementation TextChangerViewController
- (void)updateText:(NSAttributedString *)input
{
[self.textOutput setAttributedText:input];
}
- (IBAction)updateDisplayText:(UIButton *)sender
{
[self updateText:[[NSAttributedString alloc]initWithString:self.textInput.text]];
}
@end