I really want to make a simple file browser in Xcode kind of like Finder itself, but it just displays one folder as a grid view. Can anyone direct me to a guide?
            Asked
            
        
        
            Active
            
        
            Viewed 7,578 times
        
    15
            
            
        - 
                    do you mean a table (with rows and icons on the side, like list view in Finder) or a grid of icons (like the icon view in Finder)? For the former, use NSTableView or NSOutlineView. For the latter, use IKImageBrowserView. – Jakob Egger May 16 '11 at 11:55
- 
                    I wanted the icon grid, to display files in a folder. – 0x60 May 22 '11 at 05:58
1 Answers
25
            I recommend looking at Apple's code sample for SourceView.
It's probably a good place to start and should give you enough of an idea of where to begin.
 
    
    
        Phil Street
        
- 2,735
- 2
- 20
- 25
 
    