diff --git a/BCL.csproj b/BCL.csproj
index adc163cd7..c0baf8b47 100644
--- a/BCL.csproj
+++ b/BCL.csproj
@@ -293,7 +293,8 @@
iOS
Deploy\xCode\Configuration.xml
- bootstrap.js
+
+ Readme.md
true
diff --git a/Deploy/xCode/.gitignore b/Deploy/xCode/.gitignore
new file mode 100644
index 000000000..82d43fba2
--- /dev/null
+++ b/Deploy/xCode/.gitignore
@@ -0,0 +1 @@
+/Configuration.xml
diff --git a/file-system/file-system-access.ios.ts b/file-system/file-system-access.ios.ts
index f7e78932c..1d715f331 100644
--- a/file-system/file-system-access.ios.ts
+++ b/file-system/file-system-access.ios.ts
@@ -375,8 +375,7 @@ export class FileSystemAccess {
nsArray.addObject(paths[i]);
}
- // TODO: Static methods return NSString instance to enable its methods
- var nsString: any = Foundation.NSString.pathWithComponents(nsArray);
+ var nsString = Foundation.NSString.stringWithString(Foundation.NSString.pathWithComponents(nsArray));
return nsString.stringByStandardizingPath();
}
}
\ No newline at end of file