我正在使用iPhone应用,我需要使用多个标题添加片段。对于解决方案,我在我的应用程序中添加了HMSegmentControl库。它工作正常,但问题是使用UILabels它工作正常。相反,当用户点击任何片段标题按钮时,我需要加载UIView来显示屏幕。我试过了,但它不起作用。基本上我想为各个段加载UIViews(在我的XIB中连接)。
这是我的代码:
- (void)viewDidLoad
{
[super viewDidLoad];
screenBounds = [[UIScreen mainScreen] bounds];
scrollTitle = [[NSMutableArray alloc]initWithObjects:@"Alerts",@"Profile",@"Help",nil];
tabBarArray = [[NSMutableArray alloc]initWithObjects:@"Alerts",@"Profile",@"Help",nil];
// Do any additional setup after loading the view from its nib.
currentPage = 0;
segmentedControll = [[HMSegmentedControl alloc] initWithSectionTitles:@[@"Alerts",@"Profile",@"Help"]];
segmentedControll.backgroundColor = [UIColor colorWithRed:227/255.0 green:230/255.0 blue:230/255.0 alpha:1.0];
[segmentedControll setFrame:CGRectMake(0, 46, 320, 40)];
[segmentedControll setSelectedSegmentIndex:1];
containerView = [[HMSegmentedControlContainerView alloc] initWithHMSegmentedControl:segmentedControll andMinimumWIdth:107];
containerView.scrollView.showsHorizontalScrollIndicator=0;
__weak typeof(self) weakSelf = self;
[segmentedControll setIndexChangeBlock:^(NSInteger index) {
[weakSelf.menuScrollView scrollRectToVisible:CGRectMake(320 * index, 0, 320, 200) animated:YES];
}];
[self.view addSubview:containerView];
totalNoOfSegment=3;
currentPage=segmentedControll.selectedSegmentIndex;
self.menuScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 87, 320, 373)];
[self.menuScrollView setBackgroundColor:[UIColor colorWithRed:0.7 green:0.7 blue:0.7 alpha:1]];
[self.menuScrollView setPagingEnabled:YES];
[self.menuScrollView setShowsHorizontalScrollIndicator:NO];
[self.menuScrollView setContentSize:CGSizeMake(960, 200)];
[self.menuScrollView scrollRectToVisible:CGRectMake(320, 0, 320, 200) animated:NO];
[self.menuScrollView setDelegate:self];
[self.view addSubview:self.menuScrollView];
/*UILabel *label1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 373)];
[label1 setText:@"Alerts"];
label1.textColor = [UIColor blackColor];
label1.backgroundColor = [UIColor whiteColor];
label1.textAlignment = NSTextAlignmentCenter;
[self.menuScrollView addSubview:label1];*/
[self.menuScrollView addSubview:viewAlerts];
/*UILabel *label2 = [[UILabel alloc] initWithFrame:CGRectMake(320, 0, 320, 373)];
[label2 setText:@"Profile"];
label2.textColor = [UIColor blackColor];
label2.backgroundColor = [UIColor whiteColor];
label2.textAlignment = NSTextAlignmentCenter;
[self.menuScrollView addSubview:label2];*/
[self.menuScrollView addSubview:viewProfile];
/*UILabel *label3 = [[UILabel alloc] initWithFrame:CGRectMake(640, 0, 320, 373)];
[label3 setText:@"Help"];
label3.textColor = [UIColor blackColor];
label3.backgroundColor = [UIColor whiteColor];
label3.textAlignment = NSTextAlignmentCenter;
[self.menuScrollView addSubview:label3];*/
[self.menuScrollView addSubview:viewHelp];
self.panGestureLeft=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(panTableView:)];
self.panGestureLeft.direction=UISwipeGestureRecognizerDirectionLeft ;
[self.menuScrollView addGestureRecognizer:self.panGestureLeft];
self.panGestureRight=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(panTableView:)];
self.panGestureRight.direction=UISwipeGestureRecognizerDirectionRight ;
[self.menuScrollView addGestureRecognizer:self.panGestureRight];
}
-(void)panTableView:(UISwipeGestureRecognizer *)pan{
if (pan.state==UIGestureRecognizerStateEnded) {
int curr=currentPage;
if (pan==self.panGestureLeft)
{
// user dragged towards the right
curr=curr+1;
if (curr!=3) {
CATransition *transition = [CATransition animation];
transition.duration = 0.35;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype =kCATransitionFromRight;
transition.delegate = self;
[self.menuScrollView.layer addAnimation:transition forKey:nil];
segmentedControll.selectedSegmentIndex=curr;
[self segmentedControlChangedValue:segmentedControll];
}
}
else if (pan==self.panGestureRight)
{
// user dragged towards the left
curr=curr-1;
if (curr!=-1) {
CATransition *transition = [CATransition animation];
transition.duration = 0.35;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionPush;
transition.subtype =kCATransitionFromLeft;
transition.delegate = self;
[self.menuScrollView.layer addAnimation:transition forKey:nil];
segmentedControll.selectedSegmentIndex=curr;
[self segmentedControlChangedValue:segmentedControll];
}
}
}
}
- (void)segmentedControlChangedValue:(HMSegmentedControl *)segmentedControl {
NSLog(@"Selected index %i (via UIControlEventValueChanged)", segmentedControl.selectedSegmentIndex);
currentPage=segmentedControl.selectedSegmentIndex;
}
在我的代码中,如果我将动态添加UIViews,那么它将起作用。但我需要使用XIB添加UIViews。请帮我实现我的解决方案。感谢
答案 0 :(得分:0)
你的代码几乎是正确的你唯一错过的是UIViews的框架因为你在ScrollView中加载它们是以编程方式制作的,你需要使用ScrollView设置你的UIview的框架,考虑到ScrollView的内容偏移
for (int i = 0; i < numberOfView; i++) {
CGRect frame;
frame.origin.x = self.scrollView.frame.size.width * i;
frame.origin.y = 0;
frame.size = self.scrollView.frame.size;
//现在将此框架设置为相应的视图
}