Giter Site home page Giter Site logo

Comments (10)

Abhi347 avatar Abhi347 commented on May 18, 2024 1

I got the same issue, so I just used the following code in viewDidLoad

self.automaticallyAdjustsScrollViewInsets = NO;
self.edgesForExtendedLayout = UIRectNone;

Leaving it here, in case it helps someone (or if anyone can provide explanation).

from jsqmessagesviewcontroller.

jessesquires avatar jessesquires commented on May 18, 2024

thanks @jamieomatthews! i noticed this too, still investigating.

from jsqmessagesviewcontroller.

qq30135878 avatar qq30135878 commented on May 18, 2024

Happens on iPhone5 too, iOS 7.

from jsqmessagesviewcontroller.

Ricardo1980 avatar Ricardo1980 commented on May 18, 2024

It is because in iOS7 view controllers are always in full screen (below status bar and navigation bar).

I still have that problem in the current version, but I fixed with this code:
-(void) viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
self.navigationController.navigationBar.translucent=NO;
}

-(void) viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
self.navigationController.navigationBar.translucent=YES;
}

from jsqmessagesviewcontroller.

jessesquires avatar jessesquires commented on May 18, 2024

Oh, I see. Thanks @Ricardo1980 !

from jsqmessagesviewcontroller.

Ricardo1980 avatar Ricardo1980 commented on May 18, 2024

Problem is that that is not the real solution, because if you follow iOS7 design guidelines, that bar must be transparent and you see the table behind it.

from jsqmessagesviewcontroller.

jessesquires avatar jessesquires commented on May 18, 2024

Yep. This issue is already closed, though. (Without using your solution above.)

from jsqmessagesviewcontroller.

Ricardo1980 avatar Ricardo1980 commented on May 18, 2024

But it does not work for me. Maybe because I use cocoapods. Dont know.

Enviado desde mi iPhone.

El 20/11/2013, a las 17:24, Jesse Squires [email protected] escribió:

Yep. This issue is already closed, though. (Without using your solution above.)


Reply to this email directly or view it on GitHub.

from jsqmessagesviewcontroller.

jessesquires avatar jessesquires commented on May 18, 2024

Ah, yes. CocoaPods has not been updated yet. I will update once this build is more stable. :)

If you want, you can change your podfile to: pod 'JSMessagesViewController', :head

and that should pull in the most recent changes.

from jsqmessagesviewcontroller.

Ricardo1980 avatar Ricardo1980 commented on May 18, 2024

Again, thanks a lot.

Enviado desde mi iPhone.

El 20/11/2013, a las 21:31, Jesse Squires [email protected] escribió:

Ah, yes. CocoaPods has not been updated yet. I will update once this build is more stable. :)

If you want, you can change your podfile to: pod 'JSMessagesViewController', :head

and that should pull in the most recent changes.


Reply to this email directly or view it on GitHub.

from jsqmessagesviewcontroller.

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.