dparnell / psmtabbar

A port of the PSMTabBarControl for Interface Builder 3.0

This URL has Read+Write access

psmtabbar / PSMTabBar.m
100644 24 lines (17 sloc) 0.488 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// PSMTabBar.m
// PSMTabBar
//
// Created by Daniel Parnell on 29/12/07.
// Copyright 2007 Automagic Software Pty Ltd.. All rights reserved.
//
 
#import "PSMTabBar.h"
 
@implementation PSMTabBar
 
- (NSArray*)requiredFrameworks {
 
NSBundle* frameworkBundle = [NSBundle bundleWithIdentifier: @"com.automagicsoftware.PSMTabBar"];
return [NSArray arrayWithObject: frameworkBundle];
}
 
- (NSArray *)libraryNibNames {
    return [NSArray arrayWithObject:@"PSMTabBarLibrary"];
}
 
@end