Hey guys & gals, I created cocoadocs to try and fill a gap in the iOS ecosystem. It's a site that acts similar to rubydocs in that it gets the latest cocoapods libraries and documents them using a custom flavour of appledoc. I'm planning on adding support for Xcode and Dash over the next few weeks to make it even easier to use!
CocoaDocs - Documentation for iOS Libraries
21–30 of 31 posts
Re: CocoaDocs - Documentation for iOS Libraries
#22Fantastic! I can see this being incredibly useful for cases where you have multiple versions of a framework used in different projects. Right now you can install documentation into Xcode if the project uses appledoc[1], but there's no way to switch between versions. On the subject of appledoc, are you using a custom template here? It seems to improve on the default one in a few places. [1]: http://gentlebytes.com/app…
Of course, that gets messy real fast, so it's good that CocoaDocs is an option.
Re: CocoaDocs - Documentation for iOS Libraries
#23Hey guys & gals, I created cocoadocs to try and fill a gap in the iOS ecosystem. It's a site that acts similar to rubydocs in that it gets the latest cocoapods libraries and documents them using a custom flavour of appledoc. I'm planning on adding support for Xcode and Dash over the next few weeks to make it even easier to use!
Looks great! Only one thing, how often is it updated? I pushed a new Podspec to the master repo about 5 days ago for one of my projects ( http://cocoadocs.org/docsets/Colours/0.0.1/ ) and it should be v1.0.1. Just wondering if you are doing live grabbing of the data or have it cached somewhere?
Re: CocoaDocs - Documentation for iOS Libraries
#24Fantastic! I can see this being incredibly useful for cases where you have multiple versions of a framework used in different projects. Right now you can install documentation into Xcode if the project uses appledoc[1], but there's no way to switch between versions. On the subject of appledoc, are you using a custom template here? It seems to improve on the default one in a few places. [1]: http://gentlebytes.com/app…
If you use Cocoapods, when you install with Appledoc it names the documentation based on versions, e.g. TTTAttributedLabel 1.6.2 so you can keep multiple sets. Of course, that gets messy real fast, so it's good that CocoaDocs is an option.
Re: CocoaDocs - Documentation for iOS Libraries
#25Hey guys & gals, I created cocoadocs to try and fill a gap in the iOS ecosystem. It's a site that acts similar to rubydocs in that it gets the latest cocoapods libraries and documents them using a custom flavour of appledoc. I'm planning on adding support for Xcode and Dash over the next few weeks to make it even easier to use!
If you provide a /search?query=%s endpoint I would build an Alfred V2 Workflow for it. Downloading the whole documents.jsonp file each time is slow.
Re: CocoaDocs - Documentation for iOS Libraries
#26Earlier quoted context omitted.
If you provide a /search?query=%s endpoint I would build an Alfred V2 Workflow for it. Downloading the whole documents.jsonp file each time is slow.
I'd love to but ATM its a static site hosted on s3, so no API at all. Moving to something which is API / Client is within my next major move, at that point it will be super easy.
IE have http://cocoadocs.org/docsets/NUI/ Redirects to: http://cocoadocs.org/docsets/NUI/0.2.7/
This would enable http://cocoadocs.org/docsets/%s shortcuts
Re: CocoaDocs - Documentation for iOS Libraries
#27Hey guys & gals, I created cocoadocs to try and fill a gap in the iOS ecosystem. It's a site that acts similar to rubydocs in that it gets the latest cocoapods libraries and documents them using a custom flavour of appledoc. I'm planning on adding support for Xcode and Dash over the next few weeks to make it even easier to use!
Re: CocoaDocs - Documentation for iOS Libraries
#28Hey guys & gals, I created cocoadocs to try and fill a gap in the iOS ecosystem. It's a site that acts similar to rubydocs in that it gets the latest cocoapods libraries and documents them using a custom flavour of appledoc. I'm planning on adding support for Xcode and Dash over the next few weeks to make it even easier to use!
I like how you pull the github README to use at the documentation landing page.
Re: CocoaDocs - Documentation for iOS Libraries
#29Earlier quoted context omitted.
I'd love to but ATM its a static site hosted on s3, so no API at all. Moving to something which is API / Client is within my next major move, at that point it will be super easy.
Just having a HTML doc with a meta refresh from the distribution to the latest version would make a lot of things easier. IE have http://cocoadocs.org/docsets/NUI/ Redirects to: http://cocoadocs.org/docsets/NUI/0.2.7/ This would enable http://cocoadocs.org/docsets/%s shortcuts
Re: CocoaDocs - Documentation for iOS Libraries
#30https://github.com/mapbox/mapbox-ios-sdk/blob/release/MapBox...