FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MatrixReader/MatrixReader/XMLHandler.h at master · nextsun/MatrixReader · GitHub
nextsun
/
MatrixReader
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
MatrixReader
/
MatrixReader
/
XMLHandler.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
30 lines (21 loc) · 646 Bytes
Breadcrumbs
MatrixReader
/
MatrixReader
/
XMLHandler.h
Copy path
File metadata and controls
executable file
·
30 lines (21 loc) · 646 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
import
<
Foundation/Foundation.h
>
#
import
"
EpubContent.h
"
#
import
"
ChapterEPub.h
"
@protocol
XMLHandlerDelegate
<
NSObject
>
@optional
- (
void
)
foundRootPath
:
(
NSString
*)
rootPath
;
- (
void
)
finishedParsing
:
(EpubContent*)
ePubContents
;
@end
@interface
XMLHandler
:
NSObject
<
NSXMLParserDelegate
>{
NSXMLParser
*_parser;
NSString
*_rootPath;
id
<XMLHandlerDelegate> delegate;
EpubContent *_epubContent;
NSMutableDictionary
*_itemdictionary;
NSMutableArray
*_spinearray;
NSMutableArray
*chapters;
NSInteger
countSpine;
}
@property
(
nonatomic
,
retain
)
id
<XMLHandlerDelegate> delegate;
- (
void
)
parseXMLFileAt
:
(
NSString
*)
strPath
;
@end
Back
|
FazBrowse Home
|
New Git URL