Expired PersistentConnectionLogging.mobileconfig and TN 2265

2017-06-23 Thread Alex Zavatone
It appears that we are having push notification issues on iOS on a few of our servers and a few of our apps. We request pushes but I can’t tell if any come in to my app, or even to the device at all. So, I do what I always do and refer to TN 2265 which has a companion .mobileconfig file that

Re: Doubled Pixels

2017-06-23 Thread Jeff Szuhay
For a different reason, I’ve posted the most complete CGBitmapContext example I’ve seen anywhere (which is why I posted it). You can see it here http://www.blinddogsoftware.com/goodies/#DontSpillTheBits and customize to your needs. You can ignore the CGLayers, CGImage, and CIImage

Re: Why is XCode suddenly doing this?

2017-06-23 Thread Mike Crawford
Gremlins. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription:

Re: Why is XCode suddenly doing this?

2017-06-23 Thread Graham Cox
Thanks, at least it’s not just me. I haven’t changed anything AFAICS, it just started doing it. Just as suddenly, it has stopped doing it after I retried several times, and then left it a while! At least it started working, but I wish it wasn’t so unpredictable, and that I had some

Re: Doubled Pixels

2017-06-23 Thread Graham Cox
> On 24 Jun 2017, at 1:45 am, Gerriet M. Denkmann wrote: > > the image looks fine, but when I write subData to disk, it has 64 x 64 pixels. By making the NSBitMapRepresentation yourself, creating a context for it, drawing to that. If you make it yourself using the

Single-channel video recording in iOS?

2017-06-23 Thread Carl Hoefs
iOS 10.3.2 I'd like to do monochrome (or single channel red) video recording, but it seems iOS does not support this. According to AVCaptureVideoDataOutput -availableVideoCVPixelFormatTypes, the only supported pixel format types available for the iPad Pro in iOS 10.3.2 are: '420v' -

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Quincey Morris
On Jun 23, 2017, at 12:02 , Jens Alfke wrote: > > swallow your iPhone and it will take glorious HD video of your digestive > tract all the way down Pro-tip: It goes down easier if you put it in airplane mode. ___ Cocoa-dev

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Jens Alfke
> On Jun 23, 2017, at 12:13 PM, Carl Hoefs > wrote: > > Whenever we've tried implementing our own real-time video callbacks, the > frame rate drops to about 10 fps. That was a couple of years ago; I could > revisit the issue. Were those callbacks receiving

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Carl Hoefs
> On Jun 23, 2017, at 11:58 AM, Jens Alfke wrote: > >> On Jun 23, 2017, at 10:22 AM, Carl Hoefs > > wrote: >> >> At this high frame rate, I'm expecting that callbacks would not be able to >> keep up

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Jens Alfke
> On Jun 23, 2017, at 10:33 AM, Steve Bird wrote: > >> I'm currently recording 1280x720 at 240fps H.264 video on the iPhone > > Just curious - can you tell us what you are recording at 240 fps ? Since HIPAA healthcare regulations are involved, I’m guessing it’s an

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Jens Alfke
> On Jun 23, 2017, at 10:22 AM, Carl Hoefs > wrote: > > At this high frame rate, I'm expecting that callbacks would not be able to > keep up in real time without an unacceptably high rate of dropped frames. > Having the encryption integrated within the capture

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Carl Hoefs
> On Jun 23, 2017, at 11:18 AM, Quincey Morris > wrote: > > On Jun 23, 2017, at 10:51 , Carl Hoefs > wrote: >> >> it analyses specific processes in the body which are indicative of a

Re: MKMapView userLocation heading & a dropped pin

2017-06-23 Thread Eric E. Dolecki
Thank you :) On Fri, Jun 23, 2017 at 2:17 PM Marco S Hyman wrote: > > I am trying to determine whether or not the pin is in front, left, right, > > or behind the user. I am going to perform calculations within > > > > func locationManager(_ manager: CLLocationManager,

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Steve Mills
On Jun 23, 2017, at 01:18 PM, Quincey Morris wrote: On Jun 23, 2017, at 10:51 , Carl Hoefs wrote: it analyses specific processes in the body which are indicative of a certain pathology It scans for developers who type

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Quincey Morris
On Jun 23, 2017, at 10:51 , Carl Hoefs wrote: > > it analyses specific processes in the body which are indicative of a certain > pathology It scans for developers who type spaces instead of tabs??? ___ Cocoa-dev

Re: MKMapView userLocation heading & a dropped pin

2017-06-23 Thread Marco S Hyman
> I am trying to determine whether or not the pin is in front, left, right, > or behind the user. I am going to perform calculations within > > func locationManager(_ manager: CLLocationManager, didUpdateLocations > locations: [CLLocation]) { > > I already determine distance. How might I go

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Carl Hoefs
> On Jun 23, 2017, at 10:33 AM, Steve Bird wrote: > >> On Jun 23, 2017, at 1:22 PM, Carl Hoefs >> wrote: > >> I'm currently recording 1280x720 at 240fps H.264 video on the iPhone > > Just curious - can you tell us what you are recording

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Steve Bird
> On Jun 23, 2017, at 1:22 PM, Carl Hoefs > wrote: > I'm currently recording 1280x720 at 240fps H.264 video on the iPhone Just curious - can you tell us what you are recording at 240 fps ? Steve

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Carl Hoefs
> On Jun 22, 2017, at 11:30 PM, Jens Alfke wrote: > >> On Jun 22, 2017, at 5:18 PM, Carl Hoefs > > wrote: >> >> Is it possible to add encryption to this chain, so the movie file is written >> out

Doubled Pixels

2017-06-23 Thread Gerriet M. Denkmann
macOS 12.5 I try to make a sub image (subRect has size 32 x 32) like: NSRect pubRect = NSZeroRect; pubRect.size = subRect.size; NSImage *subImage = [ [NSImage alloc] initWithSize: subRect.size ]; [ subImage lockFocus ]; [ self.imagedrawAtPoint:NSMakePoint(0, 0)

MKMapView userLocation heading & a dropped pin

2017-06-23 Thread Eric E. Dolecki
Happy Friday everyone. I have a map and on it a userLocation which is tracked. I also have a dropped pin on the map. I am trying to determine whether or not the pin is in front, left, right, or behind the user. I am going to perform calculations within func locationManager(_ manager:

Re: Why is XCode suddenly doing this?

2017-06-23 Thread Alex Zavatone
This has happened to me occasionally as well with iOS apps. Ended up solving it somehow several times, near knew why it started happening. Is your app’s type no longer a Mac app? > On Jun 22, 2017, at 11:19 PM, Graham Cox wrote: > > I’ve been archiving built Mac

Re: Why is XCode suddenly doing this?

2017-06-23 Thread Mark Allan
Graham, This happened to me a few months ago and it was driving me nuts until I eventually figured out what was causing it (by trawling through all my git commits around the time it started happening). Have you added a sub-project, or a target-dependency recently? If so, check that it has

Re: AVCaptureMovieFileOutput + encryption

2017-06-23 Thread Jens Alfke
> On Jun 22, 2017, at 5:18 PM, Carl Hoefs > wrote: > > Is it possible to add encryption to this chain, so the movie file is written > out encrypted? I’ve never seen any crypto stuff in AVFoundation (but it’s been a few years.) You’ll probably need to hook