我想用 UISegmentedControl 在 3 个视图之间切换,但我被卡住了。
我正在使用故事板和ARC,到目前为止我得到了这个:
我已将分段控件拖到我的 VC 中,然后我制作了一个 IBOutlet 和一个连接到分段控件的 IBAction。
这是 .h 文件的样子:
#import <UIKit/UIKit.h>
@interface SCViewController : UIViewController
@property (strong, nonatomic) IBOutlet UISegmentedControl *segment;
- (IBAction)changeSeg:(id)sender;
@end
然后在 .m 文件中:
#import "SCViewController.h"
@interface SCViewController ()
@end
@implementation SCViewController
@synthesize segment;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)viewDidUnload {
[self setSegment:nil];
[super viewDidUnload];
}
- (IBAction)changeSeg:(id)sender {
if(segment.selectedSegmentIndex == 0){
NSLog(@"page one pressed");
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"segmentView1"]];
}
if(segment.selectedSegmentIndex == 1){
NSLog(@"page two pressed");
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"segmentView2"]];
}
}
@end
控制台显示 NSLog 消息但没有切换视图(故事板中存在 vc segmentView1 和 segmentView2)
也许我在这方面使用了错误的方法?
我想要实现的是像 iDaft2 应用这样的功能。在那里你有 2 或 3 页,你可以轻松地在它们之间切换。
谢谢你的帮助!