|
Re: Document versions browser shows windows in wrong stacking order/position
Turning off "Allow debugging during browsing versions" helps this work like it should, but still not perfectly. The windows tend to appear in the right order and location, but their rendering is still
Turning off "Allow debugging during browsing versions" helps this work like it should, but still not perfectly. The windows tend to appear in the right order and location, but their rendering is still
|
By
Steve Mills
·
#1307
·
|
|
Document versions browser shows windows in wrong stacking order/position
I'm trying to figure out why the versions browser is doing this weird thing with my windows. A video is linked below. The top-left corner of each window contains a timestamp for when the window gets
I'm trying to figure out why the versions browser is doing this weird thing with my windows. A video is linked below. The top-left corner of each window contains a timestamp for when the window gets
|
By
Steve Mills
·
#1306
·
|
|
Re: iCloud question: CloudKit vs. NSFileManager
Ok perfect - thanks Jens - that's exactly what I needed to know.
Leo
Ok perfect - thanks Jens - that's exactly what I needed to know.
Leo
|
By
Leo
·
#1305
·
|
|
Re: iCloud question: CloudKit vs. NSFileManager
I would use NSFileManager. CloudKit is for storing a server-side database that supports queries, indexes and sharing … that's overkill for a simple settings file.
Also, I believe if you use the
I would use NSFileManager. CloudKit is for storing a server-side database that supports queries, indexes and sharing … that's overkill for a simple settings file.
Also, I believe if you use the
|
By
Jens Alfke
·
#1304
·
|
|
iCloud question: CloudKit vs. NSFileManager
A question for those experienced in iCloud:
I want to implement some very basic iCloud tasks in my apps. Just to sync a few XML files that contain settings presets. So that the users can access
A question for those experienced in iCloud:
I want to implement some very basic iCloud tasks in my apps. Just to sync a few XML files that contain settings presets. So that the users can access
|
By
Leo
·
#1303
·
|
|
NSMetadataQuery results property
The shows this property:
@property (readonly, copy) NSArray *results; // this is for K-V Bindings, and causes side-effects on the query
Anybody know what the cryptic comment means about
The shows this property:
@property (readonly, copy) NSArray *results; // this is for K-V Bindings, and causes side-effects on the query
Anybody know what the cryptic comment means about
|
By
Steve Mills
·
#1302
·
|
|
Re: bonjour broken in iOS 14
Correct. Older apps (build with some SDK < 14) get the default value for "Privacy - Local Network Usage Description” and do not require "Bonjour services” when run in iOS 14.
Gerriet.
Correct. Older apps (build with some SDK < 14) get the default value for "Privacy - Local Network Usage Description” and do not require "Bonjour services” when run in iOS 14.
Gerriet.
|
By
Gerriet M. Denkmann
·
#1301
·
|
|
Re: bonjour broken in iOS 14
Oh, right! It's the "Access local network" permission. I've seen that pop up.
The Info.plist key must be required only if you build the app against the iOS 14 SDK, right? Otherwise that would break
Oh, right! It's the "Access local network" permission. I've seen that pop up.
The Info.plist key must be required only if you build the app against the iOS 14 SDK, right? Otherwise that would break
|
By
Jens Alfke
·
#1300
·
|
|
Re: bonjour broken in iOS 14
I watched "WWDC 2020 - Support local network privacy in your app” and found out that in iOS 14 the Info.plist needs additional info:
• Privacy - Local Network Usage Description
if not present -
I watched "WWDC 2020 - Support local network privacy in your app” and found out that in iOS 14 the Info.plist needs additional info:
• Privacy - Local Network Usage Description
if not present -
|
By
Gerriet M. Denkmann
·
#1299
·
|
|
Re: bonjour broken in iOS 14
I'm guessing your network environment includes a DNS server that supports DNS updates (i.e. wide-area Bonjour) but you don't have the credentials to push updates to the DNS server.
This error probably
I'm guessing your network environment includes a DNS server that supports DNS updates (i.e. wide-area Bonjour) but you don't have the credentials to push updates to the DNS server.
This error probably
|
By
Jens Alfke
·
#1298
·
|
|
bonjour broken in iOS 14
This worked up to iOS 13:
let serviceType = "_Gmd-BackGround._tcp."
let parameters = NWParameters()
parameters.includePeerToPeer = true
let browser = NWBrowser(for: .bonjour(type: serviceType,
This worked up to iOS 13:
let serviceType = "_Gmd-BackGround._tcp."
let parameters = NWParameters()
parameters.includePeerToPeer = true
let browser = NWBrowser(for: .bonjour(type: serviceType,
|
By
Gerriet M. Denkmann
·
#1297
·
|
|
Re: custom table row selection highlights - my bug or Apple's?
I assume you mean needsDisplay. In my tableViewSelectionDidChange: delegate method, if instead of setting needsDisplay on the table, I say
[self.table
I assume you mean needsDisplay. In my tableViewSelectionDidChange: delegate method, if instead of setting needsDisplay on the table, I say
[self.table
|
By
James Walker
·
#1296
·
|
|
Re: custom table row selection highlights - my bug or Apple's?
Can you set the background to needsRefresh?
Can you set the background to needsRefresh?
|
By
Alex Zavatone
·
#1295
·
|
|
custom table row selection highlights - my bug or Apple's?
I have a view-based NSTableView in a scroll view. I want to customized the way that selection highlighting is drawn. So, I set up a controller as a delegate of the table, and in the delegate method
I have a view-based NSTableView in a scroll view. I want to customized the way that selection highlighting is drawn. So, I set up a controller as a delegate of the table, and in the delegate method
|
By
James Walker
·
#1294
·
|
|
Re: Anyone using CloudKit?
I've made some progress on mocking by defining a protocol containing the CKDatabase methods I call; an empty extension to mark CKDatabase as implementing that protocol; and a mock class that
I've made some progress on mocking by defining a protocol containing the CKDatabase methods I call; an empty extension to mark CKDatabase as implementing that protocol; and a mock class that
|
By
Jens Alfke
·
#1293
·
|
|
Re: Anyone using CloudKit?
when I was working on CloudKit I made a separate User account on my Mac with my developer Apple ID, iCloud enabled, then you can see and test the Cloud data using the browser interface.
I found it
when I was working on CloudKit I made a separate User account on my Mac with my developer Apple ID, iCloud enabled, then you can see and test the Cloud data using the browser interface.
I found it
|
By
Bill Pitcher
·
#1292
·
|
|
Re: Anyone using CloudKit?
A specific test zone, perhaps when running in the test configuration?
Do you have a helper that can detect the build configuration used to run your app? I posted some a while ago and can repost if
A specific test zone, perhaps when running in the test configuration?
Do you have a helper that can detect the build configuration used to run your app? I posted some a while ago and can repost if
|
By
Alex Zavatone
·
#1291
·
|
|
Re: Anyone using CloudKit?
I've come up with a solution for this: I can't erase containers/databases, but I can erase a zone by sending a delete followed by a create. That's fine for my purposes because all my code so far
I've come up with a solution for this: I can't erase containers/databases, but I can erase a zone by sending a delete followed by a create. That's fine for my purposes because all my code so far
|
By
Jens Alfke
·
#1290
·
|
|
Re: Anyone using CloudKit?
I seem to recall that Axel Kee on Twitter completed a project that might be related to this. He’s in Singapore and is at @soulchildpls on Twitter.
But you know Apple. It would probably be best to
I seem to recall that Axel Kee on Twitter completed a project that might be related to this. He’s in Singapore and is at @soulchildpls on Twitter.
But you know Apple. It would probably be best to
|
By
Alex Zavatone
·
#1289
·
|
|
Anyone using CloudKit?
Hey, is anyone here using CloudKit? I'm getting started with it and have issues. There's some content on Apple's dev forums, but frankly even the new improved forums have awful UX (why couldn't they
Hey, is anyone here using CloudKit? I'm getting started with it and have issues. There's some content on Apple's dev forums, but frankly even the new improved forums have awful UX (why couldn't they
|
By
Jens Alfke
·
#1288
·
|