Tagged Questions
1
vote
1answer
109 views
how to delegate with an IBAction between two different UIViewController
I'm just trying to understand how delegate works and I'm in troubles.
I have two classes (both UIViewController) connected into the storyboard, the first one (ViewController.h/m) hold a TableView ...
-4
votes
3answers
100 views
Houw to use Delegator in Java [closed]
I need to Use C# Delegates functionality in Java, I saw one link for Delegator.jar to Provide Delagate Functionality in Java. I didn't find any usage of Deleagtor any where. So please share your ...
2
votes
1answer
202 views
iOS Multiple Delegates
I need a couple of my view controllers to know when Persons dictionary is getting changed.
I have created a protocol, but as I understand, the delegate property can have only one delegate, and not an ...
4
votes
2answers
119 views
Using delegates in iOS6, how would I conceptually design a to do list delegate that allows me to add and edit tasks? [closed]
I'll be honest, the whole delegation thing is confusing me a little, but I'm trying to get better.
Right now, I have a UITableView with a list of tasks, and I have a + button that brings up a modal ...
0
votes
1answer
85 views
Delegate not being set
Could someone please help me with the following code:
- (IBAction)addCellButton: (UIBarButtonItem *)sender
{
if(!self.imagePopover)
{
AlbumPicker *albumPicker = [self.storyboard ...
0
votes
3answers
74 views
Can I target a delegate to a “specific” instance of a ViewController, to get it's data?
How can I do this?
I have ViewController 1, and ViewController 2.
ViewController 1 defines a protocol and ViewController 2 conforms to it.
I set ViewController 2 has a delegate and invoke a method ...
2
votes
5answers
188 views
In Objective-C and iOS, it seems that delegates can go any direction?
I was a bit surprised at first that UIView's drawing is helped by CALayer, but CALayer's delegate is actually UIView. It seems that the relationship is reversed.
But is it true that, delegate has no ...
17
votes
4answers
9k views
What is a C++ delegate?
What is the general idea of a delegate in C++? What are they, how are they used and what are they used for?
I'd like to first learn about them in a 'black box' way, but a bit of information on the ...
0
votes
1answer
82 views
How should this be implemented? Delegation
I have many views that I want to communicate with one other view. We'll call that one other view "main view". What I want to do is have the "many other views" be able to send a method to "main view" ...
0
votes
0answers
76 views
iPhone delegation bug
I've got 2 views. The firstView and the secondView. The firstView needs the favourites array from the second view, so I try to call the "getFavourites" method defined in the protocol. This returns ...
0
votes
2answers
234 views
How do I assign a delegate to multiple classes
I have a custom delegate, and I want 2 classes to respond to it's events. How can I assign it to both classes.
ie:
viewController.delegate = firstClass && self;
0
votes
1answer
507 views
delegate not being called
I have subclass a UITableViewCell as follows:
@class MyCell;
@protocol MyCellDelegate
- (void) viewController:(MyCell*)viewCon userId:(NSNumber*)uid andType:(NSString*)type;
@end
@interface ...
0
votes
2answers
344 views
ASP.NET - How to propagate events with nested user controls
I have nested controls on a page. Ex:
Page
-ChildControl1 (of type AllOfMyItems)
-ChildControl2 (of type ListOfItems)
-ChildControl3 (of type MyItem <- this one fires event)
...
2
votes
1answer
136 views
Why is Class delegation so enigmatic?
This is probably another thick, newbie question that will have everyone smacking their foreheads and going 'Duhhhhh!' BUT, after another long spell of reading and watching countless Brad Larson ...
0
votes
1answer
1k views
Cocos2d execute a CCLayer function in one of it's children
I'm building an iPad game for a study project and I'm stuck trying to have one of my objects (which inherits from CCSprite) to call a function on the CCLayer.
The situation:
I have an instance of ...
0
votes
1answer
329 views
Delegate set in View Controller, not maintaining in subview
I asked this question earlier with way too much code.
The ViewController initializes a UIView chain, Controller>>View>>SubView, in the ViewController. After the SubView is initialized the ...
3
votes
3answers
5k views
What is mean by .delegate=self?
Could anyone explain the meaning of someViewController.delegate = self and self.delegate? Where do they help us?
-1
votes
1answer
450 views
What is mean by delegate? Why we need it? [duplicate]
Possible Duplicate:
Delegates, can't get my head around them
Hi friends,
What is mean by delegate in objective C? Why we need it? When should we use it? Is there any types in it? How ...
0
votes
1answer
366 views
Issues with alert view, 'delegate' undeclared error
This may be a school boy error, but I am trying to embed a UIAlertView after someone selects a contact property in the peoplePickerNavigationController that is NOT an address. What am I doing wrong to ...
0
votes
1answer
76 views
Collision detection delegate scheme
Hey guys! My physics engine is coming along quite nicely (thanks for asking!) and I'm ready to start working on some even more advanced junk. Case in point, I'm trying to set up my collision engine ...
0
votes
1answer
593 views
Delegation and Modal View Controllers
According to the View Controller Programming Guide, delegation is the preferred method to dismiss a modal view.
Following Apple's own Recipe example, i have implemented the following, but keep ...