up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

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|improve this answer
Will this do it? QueueViewController *queueViewController = [QueueViewController alloc] initWithNibName:@"Queue" bundle:nil]; [queueViewController onBtnClk] self.view=queueViewController.view; – iosdevnyc Nov 4 '09 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 '09 at 18:24
And this is unnecessary to set self.view in your example. – Morion Nov 4 '09 at 18:26
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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