作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的 xamarin ios 项目中,我正在从文件中获取一些数组
使用
NSArray TimeFilePath = NSBundle.MainBundle.PathForResource("Time","txt");
arrTime = NSArray.FromFile(TimeFilePath);
现在我必须将 TimeFilePath 转换为列表
我尝试了以下但失败了
List<string>items = (List<string>)TimeFilePath;
帮我看看如何在 C# 中将 NSArray 转换为 List
最佳答案
听起来你想要 arrTime
的列表(不是 TimeFilePath
)因为 PathForResource
返回一个 string
所以您在问题中的 cast 没有使用正确的变量。
有很多方法可以做到这一点,但我建议您使用 .NET 而不是 Apple API 来实现这一点,例如
var TimeFilePath = NSBundle.MainBundle.PathForResource("Time","txt");
var lines = System.IO.File.ReadLines (TimeFilePath);
var arrTime = List<string> (lines);
关于c# - 如何在 xamarin ios 中将我的 NSArray 转换到 List<String>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31679955/
我是一名优秀的程序员,十分优秀!