mingway
mingway
Here is the code to resolve the memory warning / crash in my project. Hope it will help other people has the same problem. - (void)cameraController:(id)cameraController didFinishCapturingImage:(FastttCapturedImage *)capturedImage { UIImage...
Face the same issue here on Xcode 6.4 with iOS 8.3 devices like iPhone 5\iPhone 6 when debug.Now try to download 8.4 update for testing.
@xhzengAIB 这个问题,后来有解决吗?
我通过UILongPressGestureRecognizer 替换之前的touch,并且不使用下面两个方法: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event 而是通过下面方式: - (void)processGestureRecognizer:(UIGestureRecognizer *)gesture { if ([gesture isKindOfClass:[UILongPressGestureRecognizer class]]) { UILongPressGestureRecognizer *longPress = (UILongPressGestureRecognizer *)gesture; if (longPress.state ==...
录制过程中分割的片段过多时这种造成的crash目前还没遇到,但是有遇到分割片段过多mergeAndExportVideosAtFileURLs后,视频是黑的,无法播放。