A delegate is a type that references a method
0
votes
3answers
429 views
problem with delegate of object which is delegate of NSURLConnection
I've a class PictureDownloader for the purpose of asynchronously loading images from a server. It assigns itself as a delegate of NSURLConnection and as such, is retained by NSURLConnection. I create ...
-1
votes
2answers
218 views
Message flow in Objective-C
Does anyone have a good reference which really outlines how this entire 'message flow' between classes, subclasses, etc.... works in Objective-C? It seems very central to the architecture of the ...
0
votes
2answers
2k views
objective C: Using a Delegate to call a function in parent class
I'm creating a 3 layer navigation popup controller and on the 3rd popup controller I have a delegate method to access dismissPopup method that is in the parent class. I can't seem to call it, my NSLog ...
0
votes
1answer
508 views
iPhone: how to reload tableView and push a detailView from AppDelegate?
my app is nav based. in which i have a main tableView which shows feed items in cells. when a cell is clicked, a detailview is created which shows details of that feed item. i am working with push ...
3
votes
4answers
2k views
NSUrlConnection in NSThread - No delegate is executed!
I am using an NSURLConnection in an NSThread but none of the NSURLConnection's delegate methods are executed! I have a main method in my NSTread subclass and a while loop that keeps the thread active. ...
0
votes
2answers
363 views
iPhone - Threading and Delegation
I'm running some code in a background thread to get a text file from a service. That code fires a delegate at some point. It throws as SIGABRT error once the delegate is being called and well, my ...
0
votes
1answer
211 views
Implementing kerberos delegation in a service with ODBC drivers
I'm trying to extend a windows service I've written to accept a kerberos ticket from a client and then delegate that ticket to an ODBC driver so it can connect to another server with it.
The ODBC ...
2
votes
1answer
250 views
What is delegation? When would I want to use it?
In OOP, a term delegation is mentioned. How is this modelled in a class? I searched on yahoo etc but got links to delegates.
1
vote
1answer
432 views
method_missing-like functionality in objective-c (i.e. dynamic delegation at run time)
I'm trying to transform one method call into another dynamically (at runtime).
For instance, I'd like the following:
[obj foo]
to delegate to:
[obj getAttribute: @"foo"]
(I'd like to do this ...
0
votes
1answer
59 views
how to delegate replies in a web app
we have created a web app that sends messages. sending part is straight forward.. but when we receive the replies, how can i delegate the messages sent? how can i know which message is for the certain ...
15
votes
3answers
15k views
Implementing multiple interfaces with Java - is there a way to delegate?
I need to create a base class that implements several interfaces with lots of methods, example below.
Is there an easier way to delegate these method calls without having to create a horde of ...
5
votes
1answer
280 views
Cascading delegates and “Code That Doesn't Do What It Says”
I've been searching around Apple's delegation and protocol documentation for an answer to this, but after more than a day I've decided to give up and let you guys have a shot at it. I have three ...
0
votes
1answer
187 views
Iphone Delegation
Hi
I'm using the following to raise the keyboard, I have many view controllers that could also use it but my attempts to delegate it have failed. I definitely don't want to insert this into every ...
1
vote
1answer
382 views
Setup kerberos delegation automatically
I have a web app that uses some backend servers (UNC, HTTP and SQL). To get this working I need to configure ServicePrincipalNames for the account running the IIS AppPool and then allow kerberos ...
2
votes
1answer
4k views
Steps to enable double-hop delegation in IIS7 windows 2008
my ASP.NET web application uses windows authentication on our intranet. I want it to be able to make a server-side http request to another server on the same domain that also requires windows ...
0
votes
2answers
200 views
Impersonate user in WCF from multiple callers
I'm using WCF services ensuring that UserName/Password must be provided for each request. I need use same service from many clients, but I need impersonate the call to access the appropriate resources ...
0
votes
1answer
331 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 ...
2
votes
4answers
399 views
Pattern for delegation to sub-component
In the product I am working, one of very basic scenario is serialization of classes. Typically a class to be serialized calls serialization on its sub-component
e.g. if there is a class s.t. class
...
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
vote
1answer
122 views
Event and Delegate Test
Please tell me what's the different between Class1 and Class2 or the different between Event and Delegate ?
I test my class in Form1 and have the same result
//Class1.cs
using System;
using ...
1
vote
3answers
1k views
How to update a UIButton label from another view controller
I have a UITabBar application, which has three tabs. The first tab has a UIViewController with a UIButton which displays a modal UIViewController to allow the user to select a date. I'm having trouble ...
-1
votes
1answer
457 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 ...
4
votes
3answers
4k views
How do I configure IIS so that the user's domain credentials are used when connecting to SQL server?
We've recently released the latest version of our intranet application, which now uses windows authentication as standard, and needs to be able to connect to a configured SQL server with the ...
1
vote
1answer
178 views
Exposing aggregation through the interface vs. delegation
I have an Employee object which aggregates a few other objects, such as HRData and AssignmentHistory. In the past all of this logic was contained directly in the Employee object, but for testability ...
0
votes
1answer
77 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 ...
1
vote
4answers
493 views
Accessing a class' instance variable (NSMutable Array) from another class
new to Obj C and programming in general - learned a lot from this site and really appreciate everyone's contributions.
My scenario is as follows (programming an iPhone game which explains the funny ...
4
votes
1answer
343 views
Is it possible to automatically coerce parameters passed to delegated methods (from the Array trait) using Moose/MooseX::Declare for Perl?
I'm creating a class which will contain a list of IP addresses, as Net::IP objects.
I've wrapped the Net::IP object as a subtype (IPAddress), and defined a coercion from a string to IPAddress. Then ...
0
votes
1answer
595 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 ...
1
vote
1answer
584 views
jQuery Event.Target Problem
I don´t know if I have forgotten how to do so or if it´s a bug, but I just can´t find the caller's reference in the "click" event using jQuery.
I´m doing the following:
$(document).ready(function() ...
0
votes
1answer
2k views
iPhone custom delegate problem
I have set up a delegate for my class 'HotRequest', but am having problems implementing it. The code for my class is below. Any ideas? Thanks
HotRequest.h
#import <Foundation/Foundation.h>
...
29
votes
8answers
10k views
Why aren't Python's superclass __init__ methods automatically invoked?
Why did the Python designers decide that subclasses' __init__() methods don't automatically call the __init__() methods of their superclasses, as in some other languages? Is the Pythonic and ...
1
vote
1answer
290 views
jQuery's delegate() not running properly in Safari, works fine in all other browsers
I'm working on a JavaScript-based banner for a client and have hit a wall. The banner runs fine in Chrome, Firefox, IE7 and 8. Safari, however, allows the user to close the banner once and open it ...
0
votes
1answer
3k views
How to actually implement the paging UIScrollView from Apple's example?
I found an example of a paging UIScrollView in Apple's developer docs and it's just what I want for my application. I have a main view with a "Help" button that I want to present a view that users ...
0
votes
3answers
254 views
Objective C - delegation question?
I need to create a class that gets a delegate does some calculation and then calls the delegate.
Where am i suppose to release the object I allocated?
Is it possible to init the MyClass
object ...
0
votes
1answer
562 views
No OpenID endpoint found
Got a problem with my openID.
A couple weeks ago I noticed I could no longer log in with my URL delegating to an underlying OpenID provider (getopenid). I checked their server and it was returning ...
8
votes
2answers
968 views
How can a method's Javadoc be copied into other method's Javadoc?
I know that there is @inheritDoc, but it's only for methods which override others.
I have several classes with many delegate methods (which do not override others).
Can their Javadoc be "inherited" ...
1
vote
2answers
767 views
how is the control flow to findClass of
In the parent delegation model for loading classes, I know that loadclass() is invoked on the parent, all the way to the top of the class-loader hierarchy (assuming the class is not loaded). At which ...
4
votes
3answers
4k views
Stop propagation with jquery delegate/live function not working
Heres the problem html:
<ul id="update-list">
<li class="update" onclick="window.location('some_url')">
<h2> some header </h2>
<p> some paragraph </p>
...
0
votes
1answer
326 views
how to ensure that our site authenticates with kerberos
I am working with HttpWebRequest in dotnet. I am using delegation (impersonation) to do this,
request.Credentials = CredentialCache.DefaultCredentials;
request.ImpersonationLevel = ...
6
votes
2answers
3k views
Delphi: How delegate interface implementation to child object?
i have an object which delegates implementation of a particularly complex interface to a child object. This is exactly i think is the job of TAggregatedObject. The "child" object maintains a weak ...
0
votes
1answer
673 views
Code reuse when parsing XML using NSXMLParser (iPhone dev)
In an iphone application that I am building, I am parsing XML in a number of view controllers when they are loaded by a user.
Every time I do this, I am doing the following:
establishing an ...
1
vote
1answer
516 views
How to prevent delegated handlers on a parent without preventing default in jQuery?
Is there any way to prevent a click from an <a> triggering delegated click handlers on its parent, while allowing the the <a>'s default behavior to occur (navigating to the href).
Here's ...
3
votes
1answer
322 views
C++ question: feature similar to Obj-C protocols?
I'm used to using Objective-C protocols in my code; they're incredible for a lot of things. However, in C++ I'm not sure how to accomplish the same thing. Here's an example:
Table view, which has ...
3
votes
1answer
624 views
UIView layoutSubviews delegation
I find myself wanting support for delegating the responsibility of layoutSubviews for a UIView. This to avoid having to make a specific subclass just to implement the layoutSubviews method. I'm ...
0
votes
1answer
463 views
Help with c# event listening and usercontrols
OK so I have a page which has a listview on it. Inside the item template of the listview is a usercontrol. This usercontrol is trying to trigger an event so that the hosting page can listen to it. ...
12
votes
3answers
333 views
delegating into private parts
Sometimes, C++'s notion of privacy just baffles me :-)
class Foo
{
struct Bar;
Bar* p;
public:
Bar* operator->() const
{
return p;
}
};
struct Foo::Bar
{
void ...
1
vote
1answer
311 views
innerHTML and event delegation
I have a containing div that has multiple divs within which is updated every 25ms using innerHTML (for performance reasons). I have tried using event delegation to capture events but nothing I seem to ...
1
vote
0answers
216 views
WCF Custom Delegation/Authentication without Kerberos
I'm building a simple WCF service, probably exposed via HTTPS, using NTLM security. Since not all users are going to be capable of using the service directly, we're writing a simple web front-end for ...
0
votes
1answer
1k views
WCF Fails when using impersonation over 2 machine boundaries (3 machines)
These scenarios work in their pieces. Its when i put it all together that it breaks.
I have a WCF service using netTCP that uses impersonation to get the callers ID (role based security will be used ...

