GithubHelp home page GithubHelp logo

Comments (12)

terryworona avatar terryworona commented on June 8, 2024

Haven't looked into it. No time at the moment. Give it a try!

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

Alright, I'll see what I can do.
Thanks for the quick reply.

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

I did not spend much time trying to fix it, but this little hack fixes the iOS 8 issue for me:

- (CGRect)orientFrame:(CGRect)frame
{
    NSString *systemVersion = [UIDevice currentDevice].systemVersion;
    NSUInteger systemInt = [systemVersion intValue];

    if ( (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation) || UIDeviceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) && systemInt < 8 )
    {
        frame = CGRectMake(frame.origin.x, frame.origin.y, frame.size.height, frame.size.width);
    }
    return frame;
}

I just simply added an iOS version number to the if conditional above.

from twmessagebarmanager.

PhillipApps avatar PhillipApps commented on June 8, 2024

Having the same issue in landscape, the bar is taking the whole view unfortunately.

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

have you tried to replace the orientFrame method with the one above? That fixed the problem for me.

from twmessagebarmanager.

PhillipApps avatar PhillipApps commented on June 8, 2024

Yes I tried, but problem is that when I turn my device, tap on the button which shows the message, it's shown as portrait

EDIT:
Tried again it works! Thanks man. Don't know why it was bugging me yesterday.

from twmessagebarmanager.

terryworona avatar terryworona commented on June 8, 2024

@ivanharmat do you want to submit a pull request with your patch?

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

sure. thanks. I'll get to it right now.

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

@terryworona I can't push my branch to git. It says "Permission to terryworona/TWMessageBarManager.git denied to ivanharmat."
Can you updated the code and create a new commit?

from twmessagebarmanager.

terryworona avatar terryworona commented on June 8, 2024

You'll have to issue a pull request @ivanharmat

See: https://help.github.com/articles/using-pull-requests

I can cherry pick your code but then you won't get any credit :)

from twmessagebarmanager.

ivanharmat avatar ivanharmat commented on June 8, 2024

OK @terryworona,
let me try again. I need to learn this anyway :)

from twmessagebarmanager.

MittalBanker avatar MittalBanker commented on June 8, 2024

@PhillipApps Please replace orientFrame method with this

  • (CGRect)orientFrame:(CGRect)frame
    {
    NSString *systemVersion = [UIDevice currentDevice].systemVersion;
    NSUInteger systemInt = [systemVersion intValue];

    if ( (UIDeviceOrientationIsLandscape([UIDevice currentDevice].orientation) || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeLeft || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationLandscapeRight) && systemInt < 8 )
    {
    frame = CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);
    }
    return frame;
    }

frame = CGRectMake(frame.origin.x, frame.origin.y, frame.size.height, frame.size.width); in original code which should be like this

frame = CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, frame.size.height);

thanks

from twmessagebarmanager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.