This commit is contained in:
Dave Thomas 2017-06-26 21:00:19 +01:00
Родитель 63a3129a31
Коммит 698357a4ec
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -70,7 +70,8 @@ module Mac =
|> Seq.collect (fun scene -> let vcElement = scene.Descendants(xn "viewController")
vcElement
|> Seq.choose (viewControllerMapping tryLookup)
|> Seq.map (fun vc -> {ViewControllers=vc}))
|> Seq.map (fun vc -> {ViewController=vc
View=[]}))
let scenesFromStoryBoardFileName (sb:string) =
let xdoc = XDocument.Load(new StreamReader(sb, true))