Albert Chu

Results 14 comments of Albert Chu

@wybflb I just use another similar library ......

``` objc CGRect rect = CGRectMake(8.0f, 8.0f, self.frame.size.width - 16.0f, self.frame.size.height - 16.0f); NSDictionary *attribute = [NSDictionary dictionaryWithObjectsAndKeys:self.font, NSFontAttributeName, nil]; [self.placeholder drawInRect:rect withAttributes:attribute]; ```

![b222](https://f.cloud.github.com/assets/3250916/2370712/81615216-a80e-11e3-9742-aece9c2f2767.gif) I think this bug calls by the method from FSImageScrollView line 106 zoomRectWithCenter ?

+1 For temporarily comment out line 392 and add this two lines after line 390, can hide the leftButton. ``` objc self.leftButton.hidden = YES; visualFormat = @"H:|-(==hor)-[textView]-(==hor)-[rightButton]-(==hor)-|"; ```

I just copy this method to .h file.... ``` objc - (void)_updateInputViewFrameWithKeyboardFrame:(CGRect)keyboardFrame forceReload:(BOOL)reload; ``` Use like this works for me. ``` objc [self.inputBar _updateInputViewFrameWithKeyboardFrame:CGRectZero forceReload:NO]; ```

+1 For temporarily add some custom value after line 930 works. ``` objc maxInputViewHeight = 112.0f; ```

I have been looking into this for two days, can't figure out why... I moved it into `viewWillAppear:` as sample, but still happens.

@jimmykrinkles Yes, kill filter do fix blackscreen. But i do need filter, it seems something wrong with `SCFilterSwitcherView`. When I got a blackscreen, `layoutSubviews` in `SCFilterSwitcherView` only print twice. When...