Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
i have a small doubt that how to call a method form one class to other class ,and this method is define in called class .
i wants to use the Protocol class but i don't know how to use this .
so can any one can help me to use the protocol class,with a example
You Need to create delegate for the same, You can check many questions are available for the same.
How to use custom delegates in Objective-C
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 days ago.
Improve this question
So I just want to increase my efficiency in programming and did not found any articles. I already know about the rule of main thread, but in which app cycle method I should put my UI configuration (viewDidLoad, viewDidLayoutSubviews, etc.)?
Thanks!
Currently I'm doing most of the changes in viewDidLayoutSubviews but sometimes I have to use willAppear method, which made me ask this question
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm in need of using a certain cocoa pod, but it uses a couple of functions that are unwanted to say the least. Can I disable them without copying the whole library into my repo and changing it there?
Many thanks
You can use
from module import function1, function2
and so on to import the functions you want instead. Remember that the bit thats before most functions usually is removed now, but thats the way to import only what you need
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
What is Swift µframework or µframework in general? Apparently Google gives only examples of those frameworks, but doesn't provide any clear explanation of what it is.
In this context, "µframework" is short for "microframework", which really just means a very small framework which adds a specific small piece of functionality.
The canonical example of this is Result, which adds just a single type to the Swift system.
Contrast with frameworks like Alamofire or RxSwift, which add a whole suite of functionality around a particular area.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to select multiple items from the tableView! But I don't know how to handling. Because I'm a new to the Swift programming language. I found Apple's sample codes, but it is an Objective C codes! Can anybody help me about multiple selection?
Thanks a lot!
Had you ever check the attribute inspector? There is choice whether you want single, multiple and no selection.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I want to call multiple delegate simultaneously in my iphone application.is it possible?if possible please provide me guideline.Thanks
Its not possible to call/assign multiple delegates to a single protocol. You can always do it with notifications. The delegate classes in your context should listen for the notification.