00001 // 00002 // nibObjectKeyConnector.h 00003 // NSDictionary extensions framework 00004 // 00005 // Copyright (c) 2002 Chris Purcell. All rights reserved. 00006 // 00007 // You may use this code for whatever purposes you wish. 00008 // This code comes with no warranties, implied or otherwise. 00009 // Using it may damage your data. It shouldn't, but save a copy first. 00010 // That's a good idea anyway, actually. 00011 // 00012 // The nibObjectKeyConnector encodes object-key links between objects 00013 // This is intended to allow the addition of objects to a dictionary in IB 00014 // The source will be the dictionary 00015 // The label of the link doubles as the key 00016 // The destination of the link is the associated object 00017 // 00018 00019 #import <Foundation/Foundation.h> 00020 #import <AppKit/NSNibConnector.h> 00021 00022 // New connector type to encode "object-key" link type 00023 // Simply adds the destination object to the dictionary 00024 // The key is the label of the link 00025 @interface nibObjectKeyConnector : NSNibConnector { 00026 00027 } 00028 00029 @end