aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m29
1 files changed, 29 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m b/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m
new file mode 100644
index 00000000..636e69aa
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWTransparentScrollView.m
@@ -0,0 +1,29 @@
+//
+// BWTransparentScrollView.m
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import "BWTransparentScrollView.h"
+#import "BWTransparentScroller.h"
+
+@implementation BWTransparentScrollView
+
+- (id)initWithCoder:(NSCoder *)decoder;
+{
+ if ((self = [super initWithCoder:decoder]) != nil)
+ {
+ if ([self respondsToSelector:@selector(ibTester)] == NO)
+ [self setDrawsBackground:NO];
+ }
+ return self;
+}
+
++ (Class)_verticalScrollerClass
+{
+ return [BWTransparentScroller class];
+}
+
+@end