iOS-UIViewController作为具有动态高度的弹出窗口

时间:2018-09-17 09:15:59

标签: ios objective-c uiviewcontroller

我有一个Popup-View,其中包含两个标签,一个tableview和一个按钮。我按照Display UIViewController as Popup in iPhone中所述创建了一个ViewController。

我现在的特殊要求是,在所有情况下都不必使用tableview,因此我试图将其隐藏,并期望Popup-View的高度减小。但是我总是得到相同的身高。我也尝试使用UIStackView,但是在隐藏tableview的情况下,视图的高度没有改变。

在两种情况下,我还都需要将视图放在显示器的中央。

enter image description here

@interface AuthorizationMessageViewController ()

@property (weak, nonatomic) IBOutlet UIView *messageView;
@property (weak, nonatomic) IBOutlet UILabel *titelLabel;
@property (weak, nonatomic) IBOutlet UILabel *detailsLabel;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (weak, nonatomic) IBOutlet UIButton *okButton;
- (IBAction)okButtonTouchUp:(id)sender;
@end

@implementation AuthorizationMessageViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.messageView.layer.cornerRadius = 5;
    self.messageView.layer.masksToBounds = YES;
    self.messageView.backgroundColor = COLOR_BACKGROUND_WHITE;
    self.messageView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin;

    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
    self.tableView.separatorColor = [UIColor clearColor];
    self.tableView.backgroundColor = COLOR_BACKGROUND_WHITE;

    self.titelLabel.text = WHLocalizedString(@"EventHeaderAuthorization", nil);

    [self setupView];
}

- (void)setupView
{
    NSString *ns_messageText;

    ns_messageText = @"test";

    if (YES)
    {
        ns_messageText = @"Hide"
        [self.tableView setHidden:YES];
    }
    else
    {
        ns_messageText = @"No Hide"
        [self.tableView setHidden:NO];
    }

    self.detailsLabel.text = ns_messageText;
    self.detailsLabel.textColor = COLOR_TEXT_GREY_KEY;
    self.detailsLabel.numberOfLines = 0;
    [self.detailsLabel sizeToFit];
}

#pragma mark - Table view data source

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

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 21;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"testCell"];

    UILabel *weekDayLabel = (UILabel *)[cell viewWithTag:10];
    weekDayLabel.text = @"weekday";
    weekDayLabel.textColor = COLOR_TEXT_GREY_KEY;
    weekDayLabel.font = FONT_LIGHT_SIZE_15;

    UILabel *testLabel = (UILabel *)[cell viewWithTag:11];
    testLabel = @"testLabel"
    testLabel = COLOR_TEXT_GREY_KEY;
    testLabel = FONT_LIGHT_SIZE_15;

    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

    return cell;
}

我希望有人对此有解决方案或想法。

3 个答案:

答案 0 :(得分:1)

想象下面的用户界面

enter image description here

一个包含UIViewUIButton的居中UITableView,您需要挂钩表格的高度约束,如果要隐藏它,请在弹出窗口中进行

@IBOutlet weak var heightTblCon:NSLayoutConstraint!

//

self.heightTblCon.constant = show ? 300 : 0
self.view.layoutIfNeeded()

顺便说一句,为了澄清起见,我更改了背景视图的颜色,对于模态应该透明

答案 1 :(得分:0)

隐藏tableView后,尝试在Popup-View上调用android:layout_height="?attr/actionBarSize"

sizeToFit()

答案 2 :(得分:0)

尝试使用NSLayoutConstraint调整视图的高度。为此创建一个出口,并以编程方式管理高度。例如:

 myConstraintOutlet.constant = 10
 myTableView.layoutIfNeeded()

Here是进一步助手的链接。

关于第二个查询使弹出窗口始终居中,您可以使用Autolayout或以编程方式定义弹出窗口的中心。

 myView.center = CGPoint(x: superView.center.x, y: superView.center.y)

希望有帮助。