| Issue 89: | Camera dont open lense | |
| 5 people starred this issue and may be notified of changes. | Back to list |
when the app has to re-download data, sometimes the camera don't open the lens or open the lens but the markers are not displayed in the correct way (red circle is not shown) The problem occurs when changing the radius or switching back in the camera view from the menu.
Nov 25, 2011
#1
CesarRui...@gmail.com
Dec 12, 2011
hey
i solved doing this
-(void)closeCameraView{
[self.cameraController.view removeFromSuperview];
[self.cameraController release];
self.cameraController = nil;
}
Feb 14, 2012
To fruhbrod...@gmail.com. Thank you so much for your help!! Camera lens works better than before. ( but, not perfect yet. (ㅠ.ㅠ)
Feb 22, 2012
thanks, I was wondering if I was the only one who having this issue. clearly not. great help.
Jun 1, 2012
this is not working on my app. any other suggestion?
Sep 14, 2012
With fuhbrod... his edit: It fixes the switching back in the camera view from the menu. But changing radius still bugging the lens.
Sep 17, 2012
Fixed by adding 'closeCameraView' when radius value changes.
-(void)valueChanged:(id)sender{
NSLog(@"val: %f",_slider.value);
_valueLabel.text = [NSString stringWithFormat:@"%f", _slider.value];
[[NSUserDefaults standardUserDefaults] setObject:[NSString stringWithFormat:@"%f", _slider.value] forKey:@"radius"];
[augViewController removeCoordinates:_data];
[augViewController closeCameraView];
[augViewController release];
[self downloadData];
[self iniARView];
NSLog(@"POIS CHANGED");
}
I'm also rewriting the DownloadData method, almost finished.
Keep an eye at my GitHub 'eXaLy'.
Sep 20, 2012
Since iOS6 update both solutions doesn't work anymore. Even slider or switch back from menu, lense still closed!
Oct 9, 2012
any solution to ios6? I tried them all ...
Oct 22, 2012
I've fixed it. Check out my fork. I've also got another iOS data structure (not finished yet), but it works with Twitter and Wikipedia. https://github.com/eXaLy/mixare-iphone Some one should check if it's really fixed.
Status:
Accepted
Oct 22, 2012
Ok is fixed For me!
Oct 23, 2012
Okay, good to hear!
Status:
Fixed
Oct 23, 2012
Confirmed and closed issue.
Status:
Verified
Dec 13, 2012
Now it's really fixed by using the lower API AVCaptureSession instead of UIImagePicker. |