0
votes
1answer
31 views
memory management guidelines on foundation functions
While memory management for the foundation classes are consistent and documented, i was surprised to find (via the friendly EXC_BAD_ACCESS) that Foundation functions like e.g NSStringFromSelector() …
7
votes
11answers
309 views
Multithreading Puzzles
I'm trying to come up with some programming puzzles focused on multi-threading. Most of the problems I've been able to come up with, so far, have been pretty domain specific. Does anybody have any …
1
vote
3answers
78 views
Why does -isMemberOfClass: not work here?
NSMutableArray *arr = [NSMutableArray arrayWithCapacity:3];
if ([arr isMemberOfClass:[NSMutableArray class]]) {
NSLog(@"YEP!!");
} else {
NSLog(@"NO!!");
}
I get always "NO!!" in console. I …
1
vote
2answers
81 views
Difference between Foundation Framework and Core Foundation Framework?
I try to get the hang of it, but for now both seem the same thing to me. However, Xcode allows to create an Console App with choice of using "Core Foundation" or just "Foundation". Maybe someone can …
0
votes
2answers
36 views
Questions About The Foundation And NS Library
Hello,
I'm a Objective-C learner and I don't have a Mac, then I need to use my Linux with GNUStep, but if I develop my own program on it, the end-user will need to have GNUStep(like .Net) installed …
0
votes
1answer
30 views
Get files from TFS under Linux
Hi,
is there a free (command line) tool for linux which with I can get all files from a TFS-Repository (no Check in / Check out required - only get actual version)?
greets
CFI
1
vote
2answers
89 views
NSArray of Dates sort
Consider this array. It has no keys, so I am not sure I can use NSSortDescriptor. What would be the best method to sort them?
(
"Thursday, July 30, 2009",
"Monday, September 07, 2009",
…
1
vote
3answers
90 views
Difference Between Object And NSObject
Hello,
I'm learning Objective-C and as I can see, in some tutorials they use Object(imported from objc/Object.h) and in others i see the use of NSObject(imported from Foundation/NSObject.h), but what …
0
votes
2answers
77 views
Error With Foundation.h
Hello,
I learning Objective-C in Linux(Ubuntu), but when i tryed to compile my application that needs the Foundation headers i got an error saying that the file cannot be found, but i have installed …
0
votes
4answers
121 views
Is there a bug in NSOperation in Mac OS X 10.6?
If I release an instance of NSOperation before sending -init to it I get a segmentation fault.
Reasons I think this is valid code:
Apple does this in its documentation.
Gnustep does it in its …
0
votes
1answer
90 views
How to I restore deleted UIKit.framework and Foundation.framework and others
I deleted UIKit.framework and Foundation.framework in an xcode project my accident. I cant find the framework in the target information (general tab) link libraries section. How could I add them to …
1
vote
2answers
164 views
Adding string objects to NSMutableArray?
I have a little foundation tool test (Objective-C) that I am playing with and I have a few questions ...
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
…
0
votes
2answers
108 views
Differences between Foundation frameworks on Mac OS X and iPhone
Curious:
Why is it that Foundation on OS X contains a wrapper for CFHost (NSHost) but not CFSocket, and Foundation on iPhone OS doesn't even have NSHost?
And as an aside, are there any libraries or …
1
vote
0answers
18 views
Media Foundation: another way to call IMFActivate::ShutdownObject?
Hi,
Here is a question about IMFActivate::ActivateObject and IMFActivate::ShutdownObject in Media Foundation.
According to MSDN, the component that calls ActivateObject is responsible for calling …
0
votes
0answers
35 views
Media Foundation: The MFPlay object doesn’t have to use MFStartup for the initialization?
Hi,
Here is a question about MFStartup function in Media Foundation:
According to the article "Initializing Media Foundation" (http://msdn.microsoft.com/en-us/library/ms704682%28VS.85%29.aspx), …
