mrackwitz / MRProgress

Collection of iOS drop-in components to visualize progress
MIT License
2.55k stars 306 forks source link

Setting titleLabelText to something larger than "Loading..." does not wrap text inside blurred view. #1

Closed cabeca closed 10 years ago

cabeca commented 10 years ago

When changing titleLabelText to some larger text like this:

    MRProgressOverlayView *overlay = [MRProgressOverlayView showOverlayAddedTo:self.view.window animated:YES];
    overlay.titleLabelText = NSLocalizedString(@"Signing in with Facebook", @"Message displayed while waiting for facebook login");

The text doesn't fit inside the blur view. The label should grow downwards while shrinking the spinner view.

jpaas commented 10 years ago

I'm also having this issue. Nice cocoapod though!

mrackwitz commented 10 years ago

Thank you for your feedback and pointing out this bug. Fitted the label inside the box by growing the entire dialog instead of shrinking the spinner view.

jpaas commented 10 years ago

Thanks for your quick response on this! I've already picked up the master and it looks good.