From 8777ad7c5fca79434d6ab35b94e2652325b9eed7 Mon Sep 17 00:00:00 2001 From: atanasovg Date: Fri, 16 May 2014 11:54:33 +0300 Subject: [PATCH] Fixed an issue in FileSystem module. --- BCL.csproj | 3 ++- Deploy/xCode/.gitignore | 1 + file-system/file-system-access.ios.ts | 3 +-- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 Deploy/xCode/.gitignore 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