I have ARToolKit4iOS-release1.0-2010-09-06 that I downloaded from your site.
There is the folder named "doc" in this package, but html documents have empty description for classes, methods.
Do you have complete documentation?
For example there is a fragment of code in ARApp sample:
// libARvideo on iPhone uses an underlying class called CameraVideo. Here, we
// access the instance of this class to get/set some special types of information.
id cameraVideo = ar2VideoGetCameraVideoInstanceiPhone(gVid->device.iPhone);
if (!cameraVideo) {
NSLog(@"Error: Unable to set up AR camera: missing CameraVideo instance.\n");
[self stop];
return;
}
// Under iOS 4.0 the camera will be started by -startRunLoop.
[cameraVideo performSelector:@selector(setTookPictureDelegate:) withObject:self];
[cameraVideo performSelector:@selector(setTookPictureDelegateUserData:) withObject:[cameraVideo performSelector:@selector(bufDataPtr)]];
"ar2VideoGetCameraVideoInstanceiPhone" function is not described in SDK documentation.
For example the description is needed to understand where in code the delegate methods are being run.