繁体   English   中英

iOS:将 UIView 放在固定位置的 UITableView 之上

[英]iOS: Place UIView on top of UITableView in fixed position

我需要在我的 iphone 应用程序中的 UITableView 顶部放置一个 UIView(用于广告)。 问题是,当我将表格滚动到底部时,添加的 UIView 与表格一起滚动。 我想要的是将它固定在屏幕底部。 有没有办法做到这一点?

这是我用来将 UIView 添加到表的代码:

 awView = [AdWhirlView requestAdWhirlViewWithDelegate:self]; 
 awView.autoresizingMask=UIViewAutoresizingFlexibleLeftMargin;
 [self.tableView addSubview:awView];

这是它对我的工作方式。 广告停留在视图的底部。

在 ViewDidLoad 中,在 YourController.m 中:

awView = [AdWhirlView requestAdWhirlViewWithDelegate:self];
awView.center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height-kAdWhirlViewHeight/2);
[self.view addSubview:awView];

然后在同一个 .m 文件中的某处添加这个方法:

-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
    CGRect newFrame = awView.frame;
    newFrame.origin.x = 0;
    newFrame.origin.y = self.tableView.contentOffset.y+(self.tableView.frame.size.height-kAdWhirlViewHeight);
    awView.frame = newFrame;
}

不要忘记声明 awView。

我很欣赏这是一个老问题。 但我已经找到了部分错误信息和不清楚片段的答案。 所以对于它仍然值得,这里是我如何在UITableViewController的视图底部添加一个“浮动”视图。 是的,您可以这样做,即使公认的答案说您不能。

在您的-viewDidLoad方法中,您可以创建一个视图,我们将其命名为 bottomFloatingView。 这也设置为属性。

确保在表格视图的底部添加内容插入,这将避免使用浮动视图隐藏表格的任何内容。

接下来,您应该使用UIScrollViewDelegate来更新浮动视图的框架。

错觉是你的观点被卡在了底部。 实际上,此视图在您滚动时一直在移动,并且始终被计算为显示在底部。 滚动视图非常强大! 并且可能是我认为最被低估的 UIKit 类之一。

所以这是我的代码。 注意属性,表格视图上的内容插入和-scrollViewDidScroll:委托方法实现。 我在我的故事板中创建了我的浮动视图,这就是为什么你看不到它正在设置的原因。

另外不要忘记你可能还应该使用 KVO 来观察 table view 框架的变化。 它可能会随着时间的推移而改变,最简单的测试方法是打开和关闭模拟器中的通话状态栏。

最后一件事,如果您在表格视图中使用部分标题视图,这些视图将是表格视图中最顶部的视图,因此您还希望将浮动视图置于最前面,在更改其框架时执行此操作.

@interface MyTableViewController ()
@property (strong, nonatomic) IBOutlet UIView *bottomFloatingView;
@end

@implementation MyTableViewController

static NSString *const cellIdentifier = @"MyTableViewCell";

- (void)dealloc
{
    [self.tableView removeObserver:self forKeyPath:@"frame"];
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.tableView addSubview:self.bottomFloatingView];

    self.tableView.contentInset = UIEdgeInsetsMake(0.0, 0.0, CGRectGetHeight(self.bottomFloatingView.bounds), 0.0);
    self.tableView.scrollIndicatorInsets = UIEdgeInsetsMake(0.0, 0.0, CGRectGetHeight(self.bottomFloatingView.bounds), 0.0);

    [self.tableView addObserver:self
                     forKeyPath:@"frame"
                        options:0
                        context:NULL];
}

#pragma mark - UITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 20;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];

    cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];

    return cell;
}

#pragma mark - UIScrollViewDelegate

- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    [self adjustFloatingViewFrame];
}

#pragma mark - KVO

- (void)observeValueForKeyPath:(NSString *)keyPath
                      ofObject:(id)object
                        change:(NSDictionary *)change
                       context:(void *)context {
    if([keyPath isEqualToString:@"frame"]) {
        [self adjustFloatingViewFrame];
    }
}

- (void)adjustFloatingViewFrame
{
    CGRect newFrame = self.bottomFloatingView.frame;

    newFrame.origin.x = 0;
    newFrame.origin.y = self.tableView.contentOffset.y + CGRectGetHeight(self.tableView.bounds) - CGRectGetHeight(self.bottomFloatingView.bounds);

    self.bottomFloatingView.frame = newFrame;
    [self.tableView bringSubviewToFront:self.bottomFloatingView];
}

@end
  1. 将您的视图添加到表视图的超级视图(如果可能; UITableViewController使这成为不可能)。

  2. 将您的视图添加到表视图并在-scrollViewDidScroll:委托方法( UITableViewDelegateUIScrollViewDelegate的子协议)中重新定位它。

我有一个类似的问题,我想在 UITableViewController 之上添加一个加载指示器。 为了解决这个问题,我添加了我的 UIView 作为窗口的子视图。 那解决了问题。 我就是这样做的。

-(void)viewDidLoad{
[super viewDidLoad];
//get the app delegate
XYAppDelegate *delegate = [[UIApplication sharedApplication] delegate];

//define the position of the rect based on the screen bounds
CGRect loadingViewRect = CGRectMake(self.view.bounds.size.width/2, self.view.bounds.size.height/2, 50, 50);
//create the custom view. The custom view is a property of the VIewController
self.loadingView = [[XYLoadingView alloc] initWithFrame:loadingViewRect];
//use the delegate's window object to add the custom view on top of the view controller
[delegate.window addSubview: loadingView]; 
}

对于像我这样正在寻找使用 Swift 的简单解决方案的人来说,这些答案有点过时了。 这是我所做的(假设 myCustomView 是在文件中的其他地方建立的):

func scrollViewDidScroll(_ scrollView: UIScrollView) {
   
    let pixelsFromBottom = CGFloat(20)//or whatever the
    let theHeight = self.tableView.frame.height + scrollView.contentOffset.y
    myCustomView.frame = CGRect(x: 0, y: theHeight - pixelsFromBottom , width: self.view.frame.width, height: myCustomView.frame.height)

}
- (void)viewDidLoad
{
    [super viewDidLoad];

    footerView = [[UIView alloc] initWithFrame:CGRectMake(0, SCREEN_HEIGHT-64, SCREEN_WIDTH, 64)];
    footerView.backgroundColor = [UIColor blueColor ];
    [self.navigationController.view addSubview:footerView];
}   

- (void)dealloc
{
    [footerView removeFromSuperview];
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM