A delegate is a type that references a method

learn more… | top users | synonyms

2
votes
1answer
29 views

Swing: Delegate events to child components of transformed parent

I've got a custom component GameViewCanvas extends JPanel that will hold a number of tiles (800x800 textures). Now in GameViewCanvas I've overridden the paint() method, so that it will paint the ...
0
votes
0answers
19 views

Problems with Microsoft Identity (WIF) Example „Invoking a WCF Service on the Backend via Delegated Access”

I have a prboem with a WIF/Identity delegation Sample that we urgently need: Since days I try to bring ClaimsAwareWebSite- Delegation Demo Solution up and Running, but it does not work. I have a ...
0
votes
1answer
55 views

Custom delegation to pass data between tab bar view in iOS not working

I am facing a problem related to delegation.I have 2 tabView. In first tabview i have 2 textfield and a button(to trigger the delegate method) and in the second tabview i have 2 label to display the ...
0
votes
1answer
24 views

Am I creating a retain cycle between UIViewController and a custom object?

In a project using ARC, I have a UIViewController that is handling too many concerns, so I'm looking to split things up. One obvious thing for me to take out is a method that formats and sends an ...
1
vote
0answers
18 views

jQuery UI draggbale delegation

I'm trying to delegete draggable event with jQuery.on(). It work well if you dragging elements using mouse because I use mouseover to initialize draggable(see fiddle). But there is no mouseover event ...
0
votes
1answer
47 views

iOS: Changing UIButton Title through Delegate

I'm using delegation to change the title of a UIButton. .h MainView //MainViewController.h #import <UIKit/UIKit.h> @class SignUpDelegate; @protocol SignUpDelegate <NSObject> @required ...
-1
votes
2answers
65 views

Cannot find protocol declaration for “XXXX”

I am stuck with this problem. I have the following .h file: #import <UIKit/UIKit.h> @protocol MapSettingsViewDelegate - (void)settingsDidUpdate:(BOOL)scheme; @end @interface ...
3
votes
5answers
145 views

Java: Delegation Pattern and Protected Methods

I have been using delegation pattern to wrap an object created by a factory in a 3rd party library. Recently, the library added a protected method in the base class and my wrapper class doesn't work ...
2
votes
5answers
83 views

how to pass data to the parent class in ios?

I am a beginner in objective-C. So please forgive if my question is silly. In my root view controller A, I added a subview B. In b there will be another subview C. C contains another subview D. How ...
0
votes
3answers
56 views

set up models to have a unique id attribute value among corresponding tables

I'm new to rails and I'm facing a problem with how to set up my models. I've got a set of models: Balloon, Paint, Brush etc. They have common attributes (like "name") I want them to have a unique ...
0
votes
2answers
63 views

do you need to import .h files when using delegates?

-(IBAction)ok { //send message to the delegate with the new settings [self.delegate setHeight:_height Width:_width Mines:_mines]; [self.delegate dismissViewControllerAnimated:YES ...
0
votes
2answers
95 views

How can I call a UIViewController method from an UIView subclass

I am developing and iOS app for iPad. I have an UIView subclass and I'd like to call a method of the ViewController from that subclass. I've tried to code a delegate but it doesn't work. Is that a ...
0
votes
2answers
56 views

How do I reduce delegation boilerplate?

I have a class that implements an interface. There's another class that implements this interface, too, and an instance of this second class backs my class's implementation. For many of the methods ...
-5
votes
1answer
24 views

Delegation is not working after once when i add to my viewcontroller to tabbarview controller [closed]

Hi everyone my scenario is like this i am having tabbar view controller with some viewcontrollers (viewcontroller1, viewcontroller2, viewcontroller3 etc..) added into it. now my tab bar is root view ...
0
votes
0answers
48 views

WCF trusted delegation access denied

I have a Windows Service that hosts a WCF service. The WCF service hosted in the Windows Service has a method that accesses files on various network shares via UNC. Impersonation is used to run ...
0
votes
1answer
49 views

C# Delegating Members - Resharper

Resharper can create Delegating Members (Alt + Ins) But what are delegating members? Most of the searches I do come up with American Politics which is not useful.
0
votes
0answers
87 views

Kerberos Oracle ADFS delegation S4U2Proxy ticket

We have a web site in .net 4.0 in IIS 7.5 at Windows Server 2008 R2 64, that are using Oracle Kerberos Authentication (SSO). The site uses WCF services as middle tier towards DB. All the users are ...
1
vote
0answers
118 views

WinRM - Second Hop without CredSSP

I would like to ask if it is possible to impersonate at "second hop" at WinRM service using only Kerberos (delegation)? CredSSP is no solution for me because I cannot prompt user password .. I'm ...
1
vote
1answer
110 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 ...
0
votes
0answers
32 views

Delegation : Communication/socket error between Web and App server

We have Web and App (WCF) servers and delegation is configured between them on AD. User principal name delegation type is used. All servers are Windows Server 2008 R2. Everything works fine if we ...
0
votes
1answer
54 views

Delegate protocol/IBOutlet

I basically have a subclass (RRView) of UIView with a delegate protocol. The RRViews are connected via outlets to the view controller which implements the delegate protocol as well as the delegates. ...
0
votes
0answers
9 views

dismissing View controller with data transfer

so the view controller programming guide says Always use a delegate to communicate information back to other controllers. Your content view controller should never need to know the class of the ...
0
votes
3answers
49 views

Delegation not working properly (should tell a VC to popViewControllerAnimated)

I am using a simple protocol to tell a delegate when save button was tapped on VC2 so the view controller can be dismissed by popViewControllerAnimated by VC1. VC2 has a protocol which VC1 confirms ...
0
votes
1answer
26 views

Trying to dismiss a view controller by tap on cancel using delegation (Not working at all)

Having two view controller within a navigation controller: PhoneNumbersTVC > holds a list of phone numbers added by NewPhoneNumberTVC NewPhoneNumberTVC > a controller for adding phone numbers When I ...
-4
votes
3answers
102 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 ...
0
votes
0answers
43 views

Delegate events best practices for web development

Here's a situation - i have an one-page web app with different sections and i load them asynchrously. And while im loading them in init method i delegate events with jQuery to a parent container. ...
0
votes
1answer
42 views

Eliminate repetitive code for Delegation in Objective C

One of 35 header files in project (Handed over to me by some other developer; All of them contains same delegates declaration) @interface ActivityDetailsCN : UIViewController <NSXMLParserDelegate, ...
0
votes
2answers
78 views

Drawing in segue vs writing code to transition views - why does data sometimes not transfer?

Let's say I have a UILabel on ViewControllerA and and UITextField on ViewControllerB. I want to go to ViewControllerB and input text then press a button to go back to ViewControllerA. The UILabel ...
0
votes
0answers
22 views

How do I properly implement protocols / delegates?

I'm having trouble wrapping my head around delegates and protocols. Here is me trying to use them - see if you can figure out what I'm doing wrong. In the following example, My first class ...
0
votes
1answer
90 views

How should I be transferring data through multiple view controllers?

Passing data between view controllers in iOS development seems overly complicated. Here is what I've come to realize: Passing data forward (pushing a view) or directly segueing to a view can be ...
1
vote
2answers
51 views

Delegate or instantiate additional class?

Let's say I have an Account class and an AccountReport class. In accounts#show I want to show a report of an account. Both Account and AccountReport have a number of public methods. Which technique of ...
0
votes
2answers
73 views

Trouble coordinating view controllers

I have the following view controllers built in my app. The presenting controller is "PatientSelectViewController" (let's call it controller A) and it allows to either manually enter the patient ID in ...
12
votes
2answers
2k views

C++ 11 Delegated Constructor Pure Virtual Method & Function Calls — Dangers?

Not a Duplicate of Invoking virtual function and pure-virtual function from a constructor: Former Question relates to C++ 03, not new Constructor Delegation behavior in C++ 11, and the question does ...
0
votes
1answer
139 views

ADFS delegation with SAML 2.0 delegation tokens

I have managed to configure ADFS 2.0 as a SAML 2.0 Idp and implement a SSO scenario with Shibboleth as a SAML 2.0 SP. Now I want to implement a delegation scenario in which ADFS will act as an Idp ...
2
votes
1answer
29 views

One delegation lives across multiple files?

I have started coding in Objective-C for several days and I have a question about table view. This is my declaration in myViewController.h file @interface MainViewController : NSViewController < ...
0
votes
1answer
181 views

C++ 11 Delegate Constructor With New Instance Parameter?

Having an issue getting this syntax to compile using the Visual Studio Nov 2012 CTP C++ Compiler ... Just wanted to be sure I wasn't missing something obvious. Thanks! EDIT: Removed Header to make ...
0
votes
2answers
44 views

Popping ViewControllers when using delegation

I'm a bit weak in my Objective C I'll admit, my ultimate goal is pass data from ViewController3 back to ViewController1. Actually, that part is already done and successful. However when calling ...
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 ...
10
votes
1answer
452 views

Access denied impersonating current user accessing network folder

Trying to list the directories and files within a specific folder. This folder will depend on the current user (Page.User) which logs in by Windows Authentication (NTLM) and is retrieved from the ...
2
votes
2answers
69 views

Arity of method delegated with method_missing

When I delegate methods on instances of class A to $delegation_target as below: $delegation_target = "" class A def method_missing *args, &pr; $delegation_target.send(*args, &pr) end def ...
0
votes
3answers
35 views

Setting delegate in “unrelated” class

I am having trouble using a protocol to get some data from another class. I can't see how to set the delegate in a class that doesn't segue to the MVC that needs the data. I create the protocol in the ...
2
votes
1answer
111 views

Delegating constructors: an initializer for a delegating constructor must appear alone

I have a pair of constructors that work just fine in C++03 style. One of the constructors calls a superclass (or base class) constructor ... class Window : public Rectangle { public: Window() : ...
-5
votes
2answers
69 views

Python: Explain result of the programm [closed]

One of my test tasks (to get a junior python position) says that I have to explain the result of the program. It's code is: class SuperM: pass SuperM.x = 0 class Super(SuperM): def method(self): ...
2
votes
2answers
445 views

Difference between Decorator pattern and Delegation pattern

What is the difference between Decorator pattern and Delegation pattern (if there is any) ? I don't want to know just about implementation details but also about use case differencies and subjective ...
6
votes
6answers
153 views

Nsnotification or delegation?

I just researched the two, and they both seem to be great means of communication, but nsnotification seems a ton easier to deal with. What are situations where you would want to use delegation rather ...
1
vote
2answers
119 views

How can I delegate to the __add__ method of a superclass?

Say I have this class: class MyString(str): def someExtraMethod(self): pass I'd like to be able to do a = MyString("Hello ") b = MyString("World") (a + b).someExtraMethod() ("a" + ...
0
votes
1answer
65 views

iOS: change a font from a popover for underling scrollview

Am using Xcode 4.5, targeting iOS5 and above. I have a popover that allows a user to change the fonts of the underlying view. When tapping on the font, the change does not occur, until after I close ...
1
vote
1answer
123 views

Refreshing a view from a popover

I am using Xcode 4.5 and targeting iOS 5 and above. I have a popover that allows a user to change the background of the underlying view. When tapping on the "button", it requires that I tap twice to ...
0
votes
2answers
420 views

Are multiple elements each with an addEventListener allowed?

I would like the specified function to be called only if the correct button is clicked on. function callback(func){ func(); } The main function(s) and their results: Attempt A: ...

1 2 3 4 5 6