在我的viewDidLoad方法中,设置以下变量:

// Get requested URL and set to variable currentURL
NSString *currentURL = self.URL.absoluteString;
//NSString *currentURL = mainWebView.request.URL.absoluteString;
NSLog(@"Current url:%@", currentURL);

//Get PDF file name
NSArray *urlArray = [currentURL componentsSeparatedByString:@"/"];
NSString *fullDocumentName = [urlArray lastObject];
NSLog(@"Full doc name:%@", fullDocumentName);

//Get PDF file name without ".pdf"
NSArray *docName = [fullDocumentName componentsSeparatedByString:@"."];
NSString *pdfName = [docName objectAtIndex:0];


我希望能够在其他方法(即- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {)中使用这些变量

如何在viewDidLoad方法之外重用这些变量?我是新手...非常感谢您的帮助

最佳答案

使它们成为实例变量,而不是所使用方法的局部变量。之后,您可以从同一类的所有方法访问它们。

例:

@interface MyClass: NSObject {
    NSString *currentURL;
    // etc.
}

- (void)viewDidLoad
{
    currentURL = self.URL.absoluteString;
    // etc. same from other methods
}

关于objective-c - 在另一个方法中使用在viewDidLoad中创建的NSString变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12166335/

10-10 20:46