com.apple.application-instance

2016-02-26 Thread Mark Lucas
I want to refer to a file outside my app bundle (e.g., in Application Support) to store mutable data, to avoid invalidating its signature. Apparently this is possible according to TN2206: "To support the creation of droplet-like apps or similar forms of personalization, it is acceptable to

Re: Aggregate targets in Xcode - is there any documentation on this anywhere?

2016-02-26 Thread Ken Thomases
On Feb 26, 2016, at 2:48 PM, Alex Zavatone wrote: > > Is there any documentation anywhere within Xcode 7.x or on Apple's Developer > Portal that describes Aggregate targets? From

Re: Aggregate targets in Xcode - is there any documentation on this anywhere?

2016-02-26 Thread Jens Alfke
> On Feb 26, 2016, at 5:25 PM, Alex Zavatone wrote: > > Yeah, I remember someone (was it you?) asking about a guide for writing > frameworks a while ago. Oh, I’ve got tons of experience building frameworks! But it’s still a never-ending source of frustration. (Just today we

Re: Aggregate targets in Xcode - is there any documentation on this anywhere?

2016-02-26 Thread Doug Hill
> On Feb 26, 2016, at 4:46 PM, Jens Alfke wrote: > >> On Feb 26, 2016, at 12:48 PM, Alex Zavatone > > wrote: >> >> So, I decided first to learn what Apple thinks is the difference between >> these things for iOS: >> Cocoa Touch Static

Re: Aggregate targets in Xcode - is there any documentation on this anywhere?

2016-02-26 Thread Jens Alfke
> On Feb 26, 2016, at 12:48 PM, Alex Zavatone wrote: > > So, I decided first to learn what Apple thinks is the difference between > these things for iOS: > Cocoa Touch Static Library target > Cocoa Touch Framework target > Aggregate target > > Is there any documentation anywhere

Re: How to fix "misuse of 'nonnull'" warnings in Xcode 7.3?

2016-02-26 Thread Devin Coughlin
> On Feb 25, 2016, at 13:31, Jens Alfke > wrote: > As an experiment I tried turning on the new “misuse of ’nonnull'” warning in > Xcode 7.3, and got a ton of warnings. They all make sense, but assuming I > were going to correct my code, I don’t

Re: How to fix "misuse of 'nonnull'" warnings in Xcode 7.3?

2016-02-26 Thread Sean McBride
On Thu, 25 Feb 2016 13:31:45 -0800, Jens Alfke said: >As an experiment I tried turning on the new “misuse of ’nonnull'” >warning in Xcode 7.3, and got a ton of warnings. They all make sense, >but assuming I were going to correct my code, I don’t know the best way >go about it. For example, here’s

Aggregate targets in Xcode - is there any documentation on this anywhere?

2016-02-26 Thread Alex Zavatone
Hi all. While I'm learning all this joy of creating static libraries, frameworks and aggregates on iOS, I decided to take the crazy pills and check Apple's documentation in addition to reading guides for how to do this "linked libs in iOS" stuff that kind people have written over the years.

Re: Xcode-users Digest, Vol 13, Issue 52

2016-02-26 Thread Rainer Brockerhoff
On 2/25/16 17:00, xcode-users-requ...@lists.apple.com wrote: >> On Feb 24, 2016, at 6:15 PM, Wim Lewis wrote: >> > >> > You can place a C string into a specific section using syntax like this: >> > >> >static __attribute__((section("__TEXT,foo"))) const char foo_var[] =