vote up 0 vote down star

Hey Guys,

I have a view with a button which downloads files when clicked.

Question I have is is it possible to call that click method from another view>

THanks

flag

63% accept rate

2 Answers

vote up 0 vote down check

You have a method there. Something like onBtnClk. You can create in another view an instance of your viewController, that contains this method and send [myViewController onBtnClk].

link|flag
Will this do it? QueueViewController *queueViewController = [QueueViewController alloc] initWithNibName:@"Queue" bundle:nil]; [queueViewController onBtnClk] self.view=queueViewController.view; – harekam_taj Nov 4 at 17:55
By the way this is not good solution. You should realize your download in some other class and just call it wherever you want. – Morion Nov 4 at 18:24
And this is unnecessary to set self.view in your example. – Morion Nov 4 at 18:26
vote up 0 vote down

This may be a good case to have some other class(maybe a singleton?) handle downloads, then have your click: method interact with the downloading class.

I know that everyone hates singletons, but this may be a good time to use one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.