Silence-GitHub

Results 32 comments of Silence-GitHub

Try this ``` pod 'AspectsV1.4.2' ```

Try this for 1.4.2 ``` pod 'AspectsV1.4.2' ```

用 YYTextLayout 显示,设置 YYTextContainer 的 maximumNumberOfRows、truncationType 就可以。不要设置 attributtedString 的 lineBreakMode YYTextContainer *textContainer = [YYTextContainer containerWithSize:CGSizeMake(labelWidth, CGFLOAT_MAX)]; textContainer.maximumNumberOfRows = 2; textContainer.truncationType = YYTextTruncationTypeEnd; YYTextLayout *layout = [YYTextLayout layoutWithContainer:textContainer text:attributedString]; YYLabel *label...

不支持Objective-C

可以说一下为什么要继承吗?

For camera and video, just change the filter value. ``` contrastFilter.contrast = slider.value ``` For static image, change the filter value and transmit texture. ``` contrastFilter.contrast = slider.value imageSource.transmitTexture() ```

@niraj547 Hi, the problem is the `contrastFilter` (local variable) is not in the filter chain. Set up filter chain before changing the slider value. When changing the slider value, do...

I don't have any device supporting telephoto camera. I tested `builtInUltraWideCamera` and it worked well. Ensure your camera is running, call `start()` function after creating a new camera. The problem...

`BBMetalVideoSource` has `start(progress:completion:)` method. To loop the video, start the video source again in the completion callback. ``` func start() { videoSource.start() { [weak self] (finish) in guard let self...

Synchronizing video and audio is the problem I have not solved when working on audio player. Sorry.