Post

Replies

Boosts

Views

Activity

Comment on Is it safe to put NSObject pointers into a plain C array?
I am forced to use an NSMutableArray and populate it using a loop: - (instancetype)initWith:(NSUInteger)capacity rolling:(BOOL)rolling { _list = [NSMutableArray arrayWithCapacity:capacity]; // Populate the array with all NSNull values. for (NSUInteger i = 0; i < capacity; i++) [_list addObject:NSNull.null]; }
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Comment on App upload warnings (never seen before)
How do I rebuild my projects so that result my.Framework or mylib.dylib contains the required dSYM?
Replies
Boosts
Views
Activity
Apr ’25
Comment on Xcode Documentation window eats up much CPU time
Extremely disappointed about Apple's software quality for past several years. :-(
Replies
Boosts
Views
Activity
Apr ’25
Comment on Piece of code in Playground that reliably crashes lldb server
So this is indeed an extremely simple bug?
Replies
Boosts
Views
Activity
Apr ’25
Comment on How include dSYM when I build my Framework project?
That's also want I want. My framework is independent to just one app and is designed to be reusable by other apps too.
Replies
Boosts
Views
Activity
Apr ’25