Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

multinode

macrumors regular
Original poster
Feb 4, 2011
150
0
My interface file is:

Code:
#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>
#import "TCPServer.h"

@interface OrderReceiverServer : TCPServer <NSStreamDelegate>{
    
@private CFMutableDictionaryRef connections;
}

@property (nonatomic, retain) NSFileManager *fileManager;

@end

and my implementation file (partially) is:
Code:
#import "OrderReceiverServer.h"
#import "TCPServer.h"
#import "AppDelegate.h"

@implementation OrderReceiverServer
@synthesize fileManager = _fileManager;

...
@end

The above code is running under OSX 10.6.8. During debugging with XCode 4.2, property self.fileManager doesn't show up in the debugging window.
 
Last edited:
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.