I use the following code to output Wordpress pages ordered by page title.
$args = array(
'sort_order' => 'asc',
'sort_column' => 'post_title',
'hierarchical' => 1,
'child_of' => $page,
'parent' => -1,
'post_type' => 'page',
'post_status' => 'publish'
);
$pages = get_pages($args);
It works fine except for pages starting with non-latin characters. Å gets sorted as A, it should be in the end, following our Swedish alphabet.