Posts

Post not yet marked as solved
1 Replies
430 Views
HI GuysIs it possible to transfer app specific data via AirDrop?More specifically. If I have an app that persists data locally (say Core Data). Is it possible to use AirDrop to send data that is very specific to the app to other instances of the same app running on different devices?I envisage something like get the data from Core Data, serialize it to XML or JSON, send via AirDrop and then deserialize at the other end. Is this possible? Is AirDrop meant for such use? I've had a good look around and all of the info I can find seems to be about transferring non app specific data such as photos or URL's. If it is possible and a sensible use of AirDrop then any info or pointers to resources would be very much appreciated. Many ThanksHanks
Posted
by Hanks2000.
Last updated
.
Post not yet marked as solved
0 Replies
196 Views
Hi There We are scanning PDF417 barcodes using AVFoundation, but are finding that it cannot scan barcodes that contain artefacts. Particularly vertical lines from the printer. Other libraries and terminal scanners can pick up these barcodes. Is there a way to improve this with AVFoundation? Or do we need to use a different library? Many Thanks
Posted
by Hanks2000.
Last updated
.
Post not yet marked as solved
2 Replies
843 Views
Hi GuysThis issue has popped up since I updated to latest SDKs / started working on iPhone X support.I show an EKCalendarChooser - and when it disappears the bottom toolbar remains on the screen - obscuring the content of the rest of my app.This is how I show it:EKCalendarChooser *calendarChooser = [[EKCalendarChooser alloc] initWithSelectionStyle:EKCalendarChooserSelectionStyleMultiple displayStyle:EKCalendarChooserDisplayAllCalendars eventStore:eventStore]; calendarChooser.showsDoneButton = YES; calendarChooser.showsCancelButton = YES; calendarChooser.modalTransitionStyle = UIModalTransitionStyleCoverVertical; calendarChooser.selectedCalendars = syncdCalendars; calendarChooser.delegate = self; [[self navigationController] pushViewController:calendarChooser animated:YES];Whether I pop the view controller via the Done button, or hide the buttons and let my nav controller handle it with Back - the toolbar remains in view.This is the bottom toolbar on the calendar chooser with the Add Calendar and Show All buttons. The buttons disappear but the toolbar stays there for the remainder the life of the app. At least that is what appears to happen - it is possible that the toolbar has also gone and just left a gap.Does anybody have any ideas on why this may happen?Many ThanksHanks
Posted
by Hanks2000.
Last updated
.