﻿static int keyIndex;

void ChangeTitle (MyObject sender)
{
	var thisBundle = NSBundle.MainBundle;
	var localized = thisBundle.LocalizedString (assortedKeys [keyIndex], "No translation", "Buttons");
	MyObject.Title = localized;
	keyIndex = (keyIndex+1) % MaxKeys;
}