The hierarchy of UIImagePickerController

You can get the hierarchy of subviews on UIImagePickerController with this code.

// Recursive enumerate subviews to get hierarchy of camera view.
- (BOOL)enumSubviews:(UIView*)view withNest:(int)idx
{
	Class cl = [view class];
	char sp[255]; 
	memset(sp, ' ', 255);
	sp[idx*4] = 0;

	NSLog(@"%s%@n", sp, NSStringFromClass(cl));

	for (int i = 0; i < [view.subviews count]; i++)
	{
		if ([self enumSubviews:[view.subviews objectAtIndex:i] withNest:idx+1])
			return YES;
	}

	return NO;
}

And here is a result.

PLCameraView
    PLPreviewView
        PLCameraFocusView
    UIImageView
    PLCropOverlay
        OverlayView
        PLCropOverlayBottomBar
            UIImageView
                PLCropOverlayBottomBarButton
                    UIImageView
                    UIButtonLabel
                PLCropOverlayBottomBarButton
                    UIImageView
                    UIButtonLabel
            UIImageView
                PLCameraButton
                    UIView
                        UIImageView
                PLCropOverlayBottomBarButton
                    UIImageView
                    UIButtonLabel
    UIImageView

One of UIImageView has photo taken. Keep exploring..

here again

/media/swfobject.js

Get the Flash Player to see this player.

var s3 = new SWFObject(“/media/mp3player.swf”, “line”, “240”, “20”, “7”);
s3.addVariable(“file”,”/media/here+again.mp3″);
s3.addVariable(“repeat”,”false”);
s3.addVariable(“showdigits”,”false”);
s3.addVariable(“showdownload”,”true”);
s3.write(“test1”);

We will be here again.
People will meet again.
僕らは巡る。

Download
# I recorded a guitar part within one take and laid free ambient sounds on it. 🙂

Flowers

We went to Kyoto Botanical Garden(京都府立植物園).
Our first purpose was to see Japanese apricots though,
there was a greenhouse where has many plants from all over the world.
We got so excited and took many pictures, thus these are many flowers with various sorts. 😀