查找文本文件目标C.

时间:2016-11-14 00:57:48

标签: ios objective-c xcode

enter image description here

我正在尝试在我的项目中获取legal.txt的路径。但是,无论我做什么。我得到一条空路径。它位于Policies目录中。我如何将它的路径作为字符串。我需要将该路径发送到webview控制器。有人可以帮忙。

-(void)linkPressedOnTextView:(PPLinksTextView *)tv url:(NSURL *)url{


    if ([url.host isEqualToString:@"sign_up"]) {
        GetStartedController *getStartedVC = [[GetStartedController alloc] init];
        [self.navigationController pushViewController:getStartedVC animated:YES];

    }

    else if([url.host isEqualToString:@"consentMedicalSevices"]){

        PPNavigationViewController *vc = [[PPNavigationViewController alloc]init];
        [vc openPolicies:@"Policies/privacy.txt"];

这会有效吗?我需要一种方法,一旦他点击链接并打开隐私文本,就可以将用户引导至webview。

1 个答案:

答案 0 :(得分:1)

来自apple doc:

pathForResource:ofType:inDirectory:

返回由指定名称和扩展名标识并驻留在给定包目录中的资源文件的完整路径名。

NSString *filePath = [NSBundle pathForResource:@"file" ofType:@"txt" inDirectory:[[NSBundle mainBundle] bundlePath]];
    NSLog(@"File Path:  %@", filePath);

<强>输出:

File Path:  /Users/Ashok/Library/Developer/CoreSimulator/Devices/F629F99F-C745-46EB-8A11-01BC9FF1E592/data/Containers/Bundle/Application/EB4EA25F-65E6-4CA8-B8C2-C7C0C64C6C0F/Sample.app/file.txt