rnystrom / RNFrostedSidebar

A Control Center-esque control with blurred background and toggle animations.
MIT License
2.13k stars 340 forks source link

IOS 7 SideBar #11

Closed InquirerMegamobileInc closed 10 years ago

InquirerMegamobileInc commented 10 years ago

when I was using IOS 6.1.3 the RNFrostedsidebar is still working but when i upgraded to IOS 7 the RNFrostedSidebar doesn't work anymore what should i do to make the RNFrostedSidebar work again?

ashishfission commented 10 years ago

same issue with me....side bar is coming but there is no images or button....help .. xcode 4 iphone 4s iOS 7.02

rnystrom commented 10 years ago

Xcode 4, and iOS 7? I'm confused.Can you provide more details on what is happening?

InquirerMegamobileInc commented 10 years ago

on ios 7 the sidebar buttons/ images dissapear, this is the screenshot http://imgur.com/FYrlNCU.

ashishfission commented 10 years ago

@ChineseGirl24 : ah ha got it...was facing same issue...this issue is occurring because you may be using iOS6 sdk inplace of iOS 7... SpringAnimation is available from iOS 7 ..

there is one minor modification...

search for
if (sdkHasSpringAnimation) {

        [self animateSpringWithView:view idx:idx initDelay:initDelay];
    }
    else {
        [self animateFauxBounceWithView:view idx:idx initDelay:initDelay];
    }

replace with ----

if (sdkHasSpringAnimation) { //use below code in xcode 5 //[self animateSpringWithView:view idx:idx initDelay:initDelay]; [self animateFauxBounceWithView:view idx:idx initDelay:initDelay];

    }
    else {
        [self animateFauxBounceWithView:view idx:idx initDelay:initDelay];
    }

hope it works....any help skype id --- ashishcse

@rnystrom you are rocking ....

InquirerMegamobileInc commented 10 years ago

@rnystrom you rock :) thanks @ashishfission thanks :) you also rock :))

rnystrom commented 10 years ago

Ahhhhh, I see what's happening. Great find @ashishfission!

I'm trying to decide if I should try to fix this or not. Definitely an edge-case. Happy coding @ChineseGirl24 :)