Closed InquirerMegamobileInc closed 11 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
Xcode 4, and iOS 7? I'm confused.Can you provide more details on what is happening?
on ios 7 the sidebar buttons/ images dissapear, this is the screenshot http://imgur.com/FYrlNCU.
@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 ....
@rnystrom you rock :) thanks @ashishfission thanks :) you also rock :))
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 :)
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?