我想用UISegmentedControl在3个视图之间切换但是我被卡住了。
我正在使用故事板和ARC,到目前为止我得到了这个:
我已将Segmented Control拖入我的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页,你可以轻松地在它们之间切换。
感谢您的帮助!
答案 0 :(得分:0)
好吧,我添加了一个视图控制器,然后我将UIViews放入其中并使用setHidden
在它们之间用按钮切换。我不认为这是最好的解决方案(应该是一个更好的解决方案),但它确实起到了作用。
查看:
// Set views visibility you must make an @property in .h file for each view
// Like: @property (nonatomic, weak) IBOutlet UIView *firstPage;
[_firstPage setHidden:NO];
[_secondPage setHidden:YES];
[_thirdPage setHidden:YES];
切换按钮:
- (IBAction)switchOne:(id)sender {
[_firstPage setHidden:NO];
[_secondPage setHidden:YES];
[_thirdPage setHidden:YES];
}