Vincent

Results 33 comments of Vincent

Hey guys, you can try my [fork](https://github.com/VincentSit/RRFPSBar), I fix this bug, I will submit a pr later if needed.

@RolandasRazma I only tested on my device(iPhone 5, iOS 8.1.2). Does not show anything before I modify it. ![dc597c6e-1fe0-41bd-9b40-cfdebf08772a](https://cloud.githubusercontent.com/assets/4084679/6457310/09a97094-c1af-11e4-914c-a9c21cafefc1.png)

@RolandasRazma Ok, you can download it [here](https://www.dropbox.com/s/mqizc2adrt7y3lx/RRFPSBarExample.zip?dl=0). You may need to comment out line 71: ``` [self setHidden:NO]; ```

I'm sorry I did not carefully read the `README`. So, in my device does not have this problem. But there is another question, why `_displayLink` still running when `[[RRFPSBar sharedInstance]...

Hi @ennioma , thanks for response. I just noticed that three parameters in init are optional, I can totally omit them. What a stupid mistake. so now I don't have...

Hi @ennioma , If I ignore the remaining two parameters, they will not be created automatically, you can see the call stack. ![image](https://user-images.githubusercontent.com/4084679/45153115-7a39f780-b205-11e8-8299-e96c08a2b656.png) I think this call stack may not...

Hi @ennioma , ```swift let configuration = ArekConfiguration(frequency: .OnceAWeek, presentInitialPopup: true, presentReEnablePopup: true) let arek = ArekNotifications(configuration: configuration) arek.manage { Log.info("APNs permission is \($0)") } ```

https://github.com/devxoul/UITextView-Placeholder/blob/5a133b7efc4e8dd9de91c9eada48270d90c83ef0/Sources/UITextView%2BPlaceholder.m#L201 The code above shows that you need to use `textContainerInset` instead of `contentInset`. ```swift $0.textContainerInset = UIEdgeInsets(inset: 11) $0.placeholder = ... ```