Andrey G.
Andrey G.
used for half year at least without any issue, but last days started to getting that issue - no subdomain anymore
same case :( p.s.: also it's good idea to export definition of UrlPatternOptions
have to use trial texturepacker to get sprite sheet :( in my case order is critical, because engine don't use any meta info for texture, only like - 8 sprites...
here is some snippets. height: ``` -(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; return ([indexPath compare:self.selectedIndexPath] != NSOrderedSame) ? cellHeightList : cellHeightListEditor; } ``` select: ``` -(void)...
but in other cases(i mean scrolling) contentInset is not a problem? do u dynamically recalc it?
well, i still puzzled. i just tried to log "contentOffset" and it's same after 'scrollToIndexPath'!!! ``` -(void)onSelectRow:(NSIndexPath *)indexPath { BOOL isSame = ([indexPath compare:self.selectedIndexPath] == NSOrderedSame); @weakify(self); [CATransaction begin]; [CATransaction...
looks like scrollToRowAtIndexPath does not touch the contentOffset
and im still sure it's your bar specific task (again). Because in other case i would not use contentInset, and would use tableViewController that already has autoAdjustContentInset. My idea -...
well, i gave up finally and move back to common table header. i tried alot, and still no success. The most problems at top of scrollview - when i try...
and my point is still same - it's bad idea to make people to reimplement TableView behaviors (like scrollToIndexPath) just to make your component work properly. So i will stay...