Browse Subversion Repository
Annotation of /XspfManager/XspfMLibraryViewController.m
Parent Directory
| Revision Log
Revision 41 -
( hide annotations)
( download)
Sun Nov 8 07:42:25 2009 UTC
(14 years, 5 months ago)
by masaki
File size: 482 byte(s)
[New] XspfMLibraryViewControllerを作成。
| 1 |
masaki |
41 |
// |
| 2 |
|
|
// XspfMLibraryViewController.m |
| 3 |
|
|
// XspfManager |
| 4 |
|
|
// |
| 5 |
|
|
// Created by Hori,Masaki on 09/11/08. |
| 6 |
|
|
// Copyright 2009 masakih. All rights reserved. |
| 7 |
|
|
// |
| 8 |
|
|
|
| 9 |
|
|
#import "XspfMLibraryViewController.h" |
| 10 |
|
|
|
| 11 |
|
|
|
| 12 |
|
|
@implementation XspfMLibraryViewController |
| 13 |
|
|
- (id)init |
| 14 |
|
|
{ |
| 15 |
|
|
[super initWithNibName:@"LibraryView" bundle:nil]; |
| 16 |
|
|
|
| 17 |
|
|
return self; |
| 18 |
|
|
} |
| 19 |
|
|
|
| 20 |
|
|
- (NSArray *)sortDescriptors |
| 21 |
|
|
{ |
| 22 |
|
|
id desc = [[NSSortDescriptor alloc] initWithKey:@"order" ascending:YES]; |
| 23 |
|
|
return [NSArray arrayWithObject:[desc autorelease]]; |
| 24 |
|
|
} |
| 25 |
|
|
@end |
|