iMtG Server: Gathering

Gathering Forums => Ideas and Feedback => Topic started by: Kahciroz on October 27, 2011, 02:53:11 PM

Title: Issue with landscape browsing
Post by: Kahciroz on October 27, 2011, 02:53:11 PM
I'm not sure if anyone else is having this issue, but when I am in a set filter, browsing cards in landscape view, and adding selected ones to needed, trade, etc. The landscape full card view sometimes reverts to the list view while still remaining in the landscape layout. So I rotate my iPhone to portrate and back to landscape and then it brings me to the first card in my filter. Then if I turn it back to portrate, scroll down to where I left off and turn it to landscape it causes the same prob. So the only work around is to keep it in landscape and swipe my way back to where I left off. Then I add a few more and repeat. Just a tad annoying, I can live with it tho, just thought I'd point it out. Still 5/5 in my book 
Title: Re: Issue with landscape browsing
Post by: BlackJester on October 27, 2011, 04:12:48 PM
I have had similar problems.  I think part of the issue is if the iPod is flat, like on a table.
Title: Re: Issue with landscape browsing
Post by: Mentonin on October 27, 2011, 04:59:30 PM
I have this issue and it isnt even close to flat
Title: Re: Issue with landscape browsing
Post by: Piotr on October 27, 2011, 05:26:56 PM
The coverflow will disappear when iMtG will receive - (void) didReceiveMemoryWarning from iOS. Here's what happens then:

    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];
   
    //DEV either here or in viewDidUnload it clears the advanced filters
   
//    if ( UIDeviceOrientationIsPortrait( [[UIDevice currentDevice] orientation] ) ) {
        if ( self.carousel ) {
            self.carousel.dataSource = nil;
            self.carousel.delegate = nil;
            [self.carousel removeFromSuperview];
            [self.carousel release];
            self.carousel = nil;
        }
//    }

    NSLog( @"CardListView memory warning" );
Title: Re: Issue with landscape browsing
Post by: MacUser001 on October 27, 2011, 07:05:46 PM
Yeah I've been noticing this rather annoying problem too. That's all it is though, annoying. Not a deal breaker. Would be nice to see it fixed though. Some of us don't understand that mumbo-jumbo you posted there, Piotr.
Title: Re: Issue with landscape browsing
Post by: Mentonin on October 27, 2011, 07:19:09 PM
I understood 70%, though i cant tell whats the reference to other files without actually knowing the files
Title: Re: Issue with landscape browsing
Post by: Piotr on October 28, 2011, 03:38:37 AM
Coverflow will disappear in low memory conditions. If it wouldn't, iMtG would probably crash. Now, why are we getting into these low memory conditions is a different matter.