iSightを使ってBooklog,MediaMarkerインポート用CSVファイルを生成するアプリ
| Revision | 688c2c08441e8b5f438706f7a9a438e17c5634e7 (tree) |
|---|---|
| Time | 2011-05-08 12:34:26 |
| Author | masakih <masakih@user...> |
| Commiter | masakih |
[Fix] attributesが初期化される前に使用されていたのを修正。
| @@ -69,8 +69,8 @@ static NSArray *attributes = nil; | ||
| 69 | 69 | |
| 70 | 70 | + (BEExporterAttribute *)attributeByType:(NSNumber *)typeValue |
| 71 | 71 | { |
| 72 | - for(BEExporterAttribute *attr in attributes) { | |
| 73 | - if(attr.type ==[typeValue integerValue]) return attr; | |
| 72 | + for(BEExporterAttribute *attr in [self attribtues]) { | |
| 73 | + if(attr.type == [typeValue integerValue]) return attr; | |
| 74 | 74 | } |
| 75 | 75 | return nil; |
| 76 | 76 | } |