aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m32
1 files changed, 32 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m b/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
new file mode 100644
index 00000000..7dde9d28
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWTransparentTableViewIntegration.m
@@ -0,0 +1,32 @@
+//
+// BWTransparentTableViewIntegration.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
+#import "BWTransparentTableView.h"
+
+@implementation BWTransparentTableView ( BWTransparentTableViewIntegration )
+
+- (void)addObject:(id)object toParent:(id)parent
+{
+ IBDocument *document = [IBDocument documentForObject:parent];
+
+ [document addObject:object toParent:parent];
+}
+
+- (void)removeObject:(id)object
+{
+ IBDocument *document = [IBDocument documentForObject:object];
+
+ [document removeObject:object];
+}
+
+- (void)ibTester
+{
+}
+
+@end