ইন্টারফেস বিল্ডারে, হোল্ডিং 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];