我在界面构建器中创建了一个分段控件。
在我的 ViewController.h 中:
@interface ViewController : UIViewController <MKMapViewDelegate>
@property IBOutlet UISegmentedControl *Segment;
- (IBAction)switchMode:(id)sender;
@end
我可以做的是将分段控件与 IBAction 连接,但我无法将其与 IBOutlet 连接!
最佳答案
@property(nonatomic,retain) IBOutlet UISegmentedControl *Segment;
连接已建立
关于iphone - 无法将 Segmented Control 连接到其 IBOutlet,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14818669/