是否可以复制here中的代码在MonoTouch中的作用?
这是我到目前为止所尝试的内容:
foreach(string countryCode in NSLocale.ISOCountryCodes){
// How to convert this objective-c code to c#?
// [[NSLocale currentLocale] displayNameForKey:NSLocaleCountryCode value:countryCode]
}
答案 0 :(得分:2)
可悲的是,快速查看显示MonoTouch(和MonoMac)绑定中缺少 displayNameForKey:value: (目前为4.2.x)。我将考虑实施它,并在完成后更新此条目。
更新:解决缺失绑定的源代码
public void DisplayCountryCodeNames ()
{
NSLocale current = NSLocale.CurrentLocale;
IntPtr handle = current.Handle;
IntPtr selDisplayNameForKeyValue = new Selector ("displayNameForKey:value:").Handle;
foreach (var countryCode in NSLocale.ISOCountryCodes) {
using (var key = new NSString ("kCFLocaleCountryCodeKey")) {
using (var nsvalue = new NSString (countryCode)) {
string ret = NSString.FromHandle (MonoTouch.ObjCRuntime.Messaging.IntPtr_objc_msgSend_IntPtr_IntPtr (handle, selDisplayNameForKeyValue, key.Handle, nsvalue.Handle));
Console.WriteLine ("{0} -> {1}", countryCode, ret);
}
}
}
}
适应您的喜好,享受MonoTouch的乐趣!
P.S。我将更新绑定,以便它将在更多正确的 API中包含在MonoTouch的未来版本中; - )
答案 1 :(得分:0)
是的,这当然是可能的。 MonoTouch将iOS API包装在C#类中,以便您可以在Objective-C中执行C#中的任何操作。不幸的是,你必须下载试用版才能获得文档。我想代码看起来像这样:
foreach(string countryCode in NSLocale.ISOCountryCodes){
string CountryName = NSLocale.displayNameForKey(NSLocaleCountryCode, countryCode);
}