Re: Purge all remnants of an old incarnation of my app

2017-01-19 Thread 2551phil
Normally, I just do defaults delete on the command line and that takes care of it. Issuing defaults domains will give you a (comma-separated) print out of all the defaults domains on your mac. Best Phil > On 20 Jan 2017, at 03:49, Daryle Walker wrote: > > I posted this on the Xcod

Re: On NSIncrementalStore UUID Uniqueness

2017-01-19 Thread Jean-Daniel
> Le 19 janv. 2017 à 22:18, Daryle Walker a écrit : > > >> On Jan 16, 2017, at 12:08 PM, Charles Srstka >> wrote: >> >>> On Jan 14, 2017, at 4:41 AM, Daryle Walker >> > wrote: >>> >>> Could I base the UUID off a hash of the URL? Maybe, but it wouldn’t survive >>> fi

Re: On NSIncrementalStore UUID Uniqueness

2017-01-19 Thread Charles Srstka
> On Jan 19, 2017, at 3:18 PM, Daryle Walker wrote: > > >> On Jan 16, 2017, at 12:08 PM, Charles Srstka > > wrote: >> >>> On Jan 14, 2017, at 4:41 AM, Daryle Walker >> > wrote: >>> >>> Could I base the UUID off a hash of the URL? Maybe,

Re: On NSIncrementalStore UUID Uniqueness

2017-01-19 Thread Charles Srstka
> On Jan 16, 2017, at 12:48 PM, Quincey Morris > wrote: > > On Jan 16, 2017, at 09:08 , Charles Srstka > wrote: >> >> The thing with file reference URLs degrading to file path URLs is in the >> Swift is actually not a bug, it’s deliberate >> (https://bugs.swi

Re: On NSIncrementalStore UUID Uniqueness

2017-01-19 Thread Daryle Walker
> On Jan 16, 2017, at 12:08 PM, Charles Srstka wrote: > >> On Jan 14, 2017, at 4:41 AM, Daryle Walker > > wrote: >> >> Could I base the UUID off a hash of the URL? Maybe, but it wouldn’t survive >> file moves. There are file references in macOS, which would be more stab

Re: On NSIncrementalStore UUID Uniqueness

2017-01-19 Thread Daryle Walker
> On Jan 16, 2017, at 3:59 AM, Alastair Houghton > wrote: > > On 14 Jan 2017, at 10:41, Daryle Walker wrote: >> >> Could I base the UUID off a hash of the URL? Maybe, but it wouldn’t survive >> file moves. There are file references in macOS, which would be more stable, >> but I read that th

Re: Purge all remnants of an old incarnation of my app

2017-01-19 Thread Daryle Walker
I posted this on the Xcode list, but one of the respondents suggested adding it here too…. > On Jan 15, 2017, at 8:11 PM, Daryle Walker wrote: > > I threw away an app I made in Xcode 7, including clearing its Git space and > replacing it with an empty branch. I created a new app with Xcode 8.

Re: Swift: Draw a circle with tic marks at it's edge?

2017-01-19 Thread Quincey Morris
On Jan 19, 2017, at 05:48 , Eric E. Dolecki wrote: > > However, the position of the ticks > is off. Seems like it needs to be moved down 1/2 way and the same to the > right. The position of the ticks is correct as you calculated, since you calculated relative to the view origin, which is at the

Re: Merging scrolling/clipping with NSStackView

2017-01-19 Thread Quincey Morris
On Jan 19, 2017, at 06:39 , Daryle Walker wrote: > > The inner views should be as tall as they need to be. I don’t understand this part. How tall is that? I assume you mean that you want the text and table views to be tall enough to show all of their contents, then stacked together and wrapped

Re: Swift: Draw a circle with tic marks at it's edge?

2017-01-19 Thread Eric E. Dolecki
Okay - Paintcode to the rescue. I made my art in Illustrator, and I can support up to 45 values @ the moment (each segment an 8º rotation). I if/else the hell out of whether or not a line gets stroked based on the number of ticks. At least my artwork for the dial looks good now. Thanks for that sug

Re: Merging scrolling/clipping with NSStackView

2017-01-19 Thread Jonathan Mitchell
> On 19 Jan 2017, at 14:39, Daryle Walker wrote: > > Right now, my window has a table view sitting on top of a text view. Those > templates from Interface Builder have those NSViews surrounded by a clip view > surrounded by a scroll view. But I want to flip that around; put the table > and te

Merging scrolling/clipping with NSStackView

2017-01-19 Thread Daryle Walker
Right now, my window has a table view sitting on top of a text view. Those templates from Interface Builder have those NSViews surrounded by a clip view surrounded by a scroll view. But I want to flip that around; put the table and text views together in a stack view, and surround that with clip

Re: Swift: Draw a circle with tic marks at it's edge?

2017-01-19 Thread Eric E. Dolecki
[image: knob.jpg] I have this Class that I am testing out. However, the position of the ticks is off. Seems like it needs to be moved down 1/2 way and the same to the right. I tried doing this with a shape layer and moving that - but it didn't change the appearance. Also, it seems like the spacing

MKMapView hybrid mode app hang problem

2017-01-19 Thread Devarshi Kulshreshtha
I have MKMapView on layout, if I enable Standard Mode and quickly perform basic operations on it such as - zoom - in / out, pan it works fine but if I perform same operations on MKMapView with hybridFlyover mode enabled CPU utilisation reaches 100% and my app hangs. Any ideas on how can resolve it