Hi Andreas.
I assuming that you aren't using ARC, right?
Be aware that the property declaration that you send doesn't retain anything.
The declaration should by:
@property (nonatomic, retain) dispatch_queue_t *dispatchQueue;
On Nov 2, 2011, at 9:52 AM, Andreas Grosam wrote:
> I want to set a d
version until I make a clean of the A project.
I check the command that Xcode perform to build and link A and It's seams ok,
it make reference to the last version of B and I haven't any other version of
this file in my machine.
I appreciate your help.
Regards
On Oct 31, 2011, at 2:17 PM,
Hi all.
I hava tow projects, ket say "A" and "B", "A" is a stander iOS project and "B"
is a static library project. What I need is:
- If I compile "A" for iOS device then Xcode should generate "B" for iOS device
and link it to "A".
- If I change some code in "B" and then run "A" Xcode should rec
Thank you all for your answers.
I think that PackageMaker is what I was looking for.
Best regards,
Bruno.
On Sep 22, 2011, at 5:17 PM, Nick Zitzmann wrote:
>
> On Sep 22, 2011, at 9:38 AM, Bruno Berisso wrote:
>
>> My intention is to copy the executable and a man page to the
Hi every one.
I just finish a simple command line tool thats may help my fellows in the
office and I wonder how can I deploy it.
I try search the web but there is no much info about develop command line app
for Mac.
My intention is to copy the executable and a man page to the right place and
c
ex.html)
Thanks for your answers.
Regards.
On Jul 31, 2011, at 7:26 AM, Fritz Anderson wrote:
> On 30 Jul 2011, at 10:58 PM, Bruno Berisso wrote:
>
>> In the library project I use several categories, one of them add some
>> methods to NSDate to move a date around (ej: 'move
t; On 2011 Jul 30, at 20:58, Bruno Berisso wrote:
>
>> If some one has any clue I will really appreciate it.
>
> Wow. I remember a similar bug if you had a category in a framework, way back
> in Mac OS 10.3! Read theseā¦
>
> http://www.cocoabuilder.com/archive/xcode/26
Hi all.
I'm working on tow projects. One is a Mac application and the other is a static
library used for the application. Both are in the same Xcode workspace.
In the library project I use several categories, one of them add some methods
to NSDate to move a date around (ej: 'moveDateToNextMonth'
Hello all.
In my application I use a modal sheet for block the user interface while the
app is consulting a remote service. The call to the service is executed in
background and the sheet is show/hide with two methods defined in the
application
delegate 'showLoading' and 'hideLoading'. Those a