Andrey G.

Results 66 comments of Andrey G.

hey. thanks for PR. I checked it, but wanted to double-check for these few changed format code - you replaced “-“ with “/“, so i wanted to check official docs...

check this one: https://github.com/KingSora/OverlayScrollbars It works the same on OSX/Windows, with autohide (OSX/iOS) or without(OSX/Windows). That was the main reason to switch from this package to overlay, even it has...

@sakhnyuk overlay supports iframes and textarea. Almost the only solution that supports it. At least out of the box. But consistency across browsers/os is more critical than iframe or textarea.

if i use like this: ``` - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; WorkoutExerciseListTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"WorkoutExerciseListCell" forIndexPath:indexPath]; if( [tableView shouldSubstitutePlaceHolderForCellBeingMovedAtIndexPath: indexPath] ) {...

nope, i woud like to use this new feature of IOS tables, but for me it somehow does not work. So my height came from: ``` -(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath...

as you wrote at readme: ``` -(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; return (([indexPath compare:self.selectedIndexPath] != NSOrderedSame) ? cellHeightCollapsed : cellHeightExpanded); } ```

but it has nothing with height, it's hidden. if i 'patch' hidden property, then everything is fine

well, it's very strange: at one viewcontroller - everything is ok: ``` - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { indexPath = [tableView dataSourceIndexPathFromVisibleIndexPath: indexPath]; UITableViewCell *cell; if([indexPath compare:self.selectedIndexPath] == NSOrderedSame)...