0

UIView以下は、ツールバーの下に表示するコードです。ツールバーのボタンをクリックすることで表示されます。UIView次に、ポップアップするボタンにボタンを追加して、キャンセルします。可能であれば、UI を改善するナビゲーション バー上のボタンはありますか? 誰でもチュートリアルなどに向けて教えてもらえますか?

-(void)likeButton:(UIBarButtonItem *)button
 {                                                
     CGRect frame = CGRectMake(0, 480, 320, 190);
     frame.origin.y = CGRectGetMaxY(self.optionsToolBar.frame)-frame.size.height;   
     bottomView.frame = frame;
     [self.optionsToolBar.superview insertSubview:bottomView              
                                      belowSubview:self.optionsToolBar];
 }
4

1 に答える 1

2
 -(void)likeButton:(UIBarButtonItem *)button
  {                                                
      CGRect frame = CGRectMake(0, 480, 320, 190);
      frame.origin.y = CGRectGetMaxY(self.optionsToolBar.frame)-frame.size.height;   
      bottomView.frame = frame;

      UIView *navigationView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; 
      [navigationView setBackgroundColor:[UIColor blueColor]];
      UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
      [button setTitle:@"close" forState:UIControlStateNormal];
      [button addTarget:self action:@selector(closeView:) forControlEvents:UIControlEventTouchUpInside];
      [navigationView addSubView:button];
      [bottomView addSubView:navigationView];

      [self.optionsToolBar.superview insertSubview:bottomView              
                                  belowSubview:self.optionsToolBar];

  }


  - (void) closeView :(id)sender{
      [[sender superView] removeFromSuperView];          
  }
于 2013-02-08T09:15:57.633 に答える