Posts

Post not yet marked as solved
1 Replies
298 Views
I want to make an app that track my bike in real time. The bike send data position with 2G on a server and my app get these datas in real time via websocket. So my question is: Can I display this bike position on a MapKit ? Will Apple approve this app or is it against privacy policy ?
Posted
by Nelpar.
Last updated
.
Post not yet marked as solved
0 Replies
1k Views
Hello,I simply manage an expendable table view with constraints to get the following behavior:https://ibb.co/DCQbThShttps://ibb.co/qgKwjn7This table view is into the same custom view as the view "Points of intereset" below. This custom view have all its constraints fixed exepted the table view height. When I want to expand the table view, I just have to increase the height constraint of the custom view by doing: for constraint in customView.constraints { if constraint.firstAttribute == .height { constraint.constant = newHeight } }It works perfectly on every iOS version except the iOS 13 which has this behavior:https://ibb.co/YbrWMkWThe weird thing is that if I do the height constraint change in ViewDidLoad, ViewWillAppear or ViewDidAppear, it have the behavior I expect but not when I do it on user interaction. Also, I tried to do it into and outside a main thread but has no effect.After long try, I really think it's a bug from iOS 13. Could someone have an idea about this UI bug ?Tried on iPhone 7, iOS: 13.1 (17A5837a) and simulator iPhone 8, iOS 13Version Xcode: 11.0 (11A419c)
Posted
by Nelpar.
Last updated
.
Post not yet marked as solved
0 Replies
466 Views
Hello,I try to install a .ipsw of iOS 13 MG with macOS Catalina 10.15 Beta (19A558d) on an iPhone 7 under iOS 13.1 beta 3 (17a5837a).To do it, I select my iPhone in finder and press "Restore iPhone...". Then I have an error "There was a problem downloading the software for the iPhone "iPhone 7". The requested resource was not found".The phone is also ejected from finder but it happens also when I don't press the restore button.You can see the demo video here : https://www.youtube.com/watch?v=wku8Pk0pN6c&feature=youtu.beSomeone is aware about this bug ?
Posted
by Nelpar.
Last updated
.