Did follow the tutorial now. Aftermath is taking more time than those actual steps, thanks again for making it so easy

Don't take the following issues personal, I just wanted to share my experience in case others who follow your tutorial come across the same...
Issue: (tutorial was updates, thanks!) The tutorial says to check out revision 30263, but doesn't specify the checkout parameters to do so. Might want to include that, so that everyone can easily follow up with copy'n'paste.
Issue: Speaking about copy'n'paste: to avoid non-visible text in the clipboard, which confuses the terminal, access the page with JavaScript disabled. Also, do not double-click lines to copy the whole line - sometimes there are spaces, or worse, other invisible characters, at line beginning, which will lead to a command not being accepted.
Issue: Can't test this with iPhone 5 Simulator or lower due to just one (64 bit) simulator architecture. Would be great if future tutorials would include 32 bit simulator for emulation on old devices.
Issue: (solution in posts below) This code no longer compiles due to invalid number of parameters:
Result := UIActionSheet.alloc.initWithTitle_delegate_cancelButtonTitle_destructiveButtonTitle_otherButtonTitles(nil, nil,
Utf8StrToNSStr('Cancel'),
Utf8StrToNSStr('Delete Product'),
Utf8StrToNSStr('Show Files in Product'),
nil);
This must have been an issue with iOS_Controls.pas as well, since Constructor TiOSAlertView.CreateWithTitle has been adjusted accordingly and is now kind of broken there.
Kind of my most serious problem, since I've been using this to display three options. Will investigate this later.
Issue: Table cell selection still not implemented in iOS_Controls, while being so easy:
Procedure TUITableViewEvent_.tableView_didSelectRowAtIndexPath(tableView: UITableView; indexPath: NSIndexPath);
begin
if Assigned(OnSelect) then begin // pk
OnSelect(nil);
end;
Issue: Example project hangs at black screen on my iPhone 5 (had to reduce dist platform from 8.2 to 8.1). Doesn't matter that much, mine compiles and runs fine

Will try to downgrade / make 7.1 SDK available on my machine now, since I want to be backwards compatible really.