appledoc icon indicating copy to clipboard operation
appledoc copied to clipboard

Objective-c code Apple style documentation set generator.

Results 108 appledoc issues
Sort by recently updated
recently updated
newest added

Thats makes it impossible to customize title of Programming Guide

When I write ``` [MYObject methodWithParam:] ``` in Programming Guide I would expect the [behavior of Apple](https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Conceptual/CoreData/FetchingObjects.html#//apple_ref/doc/uid/TP40001075-CH6-SW1) , namely resulting in link that looks like that: [methodWithParam:](/apiblabla) not like that:...

After noticing that ARC support had been merged in, I [hacked the old homebrew formula](https://gist.github.com/sixten/1f96c3fb53f54ba0ddaf#file-appledoc-rb) to pull down and build HEAD, and pointed it at some of our app code:...

One simple example to elaborate all. In this line code, there should be three cross references: ``` - (id)application:(CGIApplication *)application handlerForContext:(CGIContext *)context; ``` The classes `CGIApplication` and `CGIContext`, as well...

I'm using the example build step script, but it's failing with an error that does not make any sense. Here is my script: ``` # Start constants company="Derek Clarkson"; companyID="au.com.derekclarkson";...

Would like to see support for NS_UNAVAILABLE Right now if a method such as init is marked NS_UNAVAILABLE it still shows up in documentation. I could go either way with...

Similar to how apple has a message at the top of all beta documentation. This would be inserted as a `blockquote` at the top of all documentation generated. Example from...

I'm working with frameworks. I do a scan using --include .h but two files are not scanned or included. One is the frameworks main file StoryTeller.h and the other is...

**How do I get the method signature to render over multiple lines like Apple ? ...** ``` + (void)computeSharedSecret:(NSMutableData *)sharedSecretData privateKey:(NSMutableData *)privateKeyData publicKey:(NSMutableData *)publicKeyData error:(NSError **)error ``` **... instead all...

I would like to have some color coding for my "< code >" blocks and I am wondering if this is something that would be interesting to add as a...