A delegate is a type that references a method
10
votes
1answer
699 views
When to use Ruby DelegateClass instead of SimpleDelegator? (DelegateClass method vs. SimpleDelegator class)
Probably i am missing something simple, but i do not understand how to use Ruby's DelegateClass method, i mean when to use it instead of SimpleDelegator class. For example, all of the following seem ...
1
vote
2answers
69 views
iOS delegation does not work, cannot fix it (code inside): sending data from UITableView to UITextField in another view
I searched extensively for delegation tutorials, but could not get it to work. Here is the story and the code.
DetailViewController has a UITextField and a UIButton. When you press the button you get ...
1
vote
2answers
183 views
Java: How to open pop-up window from a class the GUI already delegates to?
I have several classes in my program, but for now we only have to worry about two of them:
GUI and Logics.
The GUI class delegates to the Logics class:
Logics logics = new Logics();
This is ...
0
votes
0answers
310 views
ios - How to set background image (UIViewController.image) on a delegated method?
I'm new to iOS development and i am working on an iPad app.
I have defined a protocol width the required method setBackgroundImage.
I call the delegated method after I select a image from the ...
4
votes
1answer
338 views
click event listeners attached to document.body dont fire in iOS6?
Experiencing strange behaviour and non functioning event delegation in iOS6, the root of which is that if I simply attach an event handler to document.body, as so:
...
0
votes
1answer
65 views
delegate not getting nil
I am working on a project in which I perform lazy loading of images. When the imagedownloader downloads the images,it sends the message to its delegate to handle the image. But when its delegate,which ...
0
votes
1answer
321 views
Implementing WIF ActAs Scenario: The identity check failed for the outgoing message
So I'm trying to consume a WCF service from a website and pass the IClaimsIdentity the site got from an STS through to the service.
When I try to invoke a service method through an ActAs channel, I ...
0
votes
0answers
79 views
Where should I delegate this UITableView to?
I'm building a scrollable grid layout in iOS.
The hierarchy is as follows:
(MyController) UITableViewController
- Parent Table View (UITableView)
- "Horizontal cell" (UITableViewCell)
- ...
2
votes
1answer
310 views
Use A delegate to pass data back through multiple view controllers
In IOS, I'm very comfortable with passing data around between views that are directly segued between using prepareforsegue to pass data forward and delegates to pass it back.
The problem I'm having ...
3
votes
2answers
212 views
Rails 3 - Model association (composition) and method delegation
I have the following models and associations:
class JuridicalPerson < ActiveRecord::Base
end
class Supplier < ActiveRecord::Base
belongs_to :juridical_person
delegate :company_name, ...
0
votes
0answers
115 views
Spring Security Delegating Authentication to CAS
I was looking through the questions between CAS and Spring Security, but I have not found the exact situation for this. My question is in regards with Setting up Spring Security to have it's users ...
2
votes
1answer
655 views
Kerberos Delegation Failed for Users from a trusted domain
I have successfully setup the Kerberos Delegation between a ASP.Net web site and a SQL Server. All the users in the same domain of the IIS application pool account and SQL Server service account can ...
0
votes
1answer
148 views
AVAudioPlayerDelegate method doesn't seem to work
I'm simply trying to do something when an audio file has finished playing, but it doesn't seem to work.
In my .h file I've got this:
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
#import ...
0
votes
4answers
192 views
UITextField with 2 delegates
I just made a formatter class that will automatically format numbers typed into a uitextfield and give back the correct format.
i.e.
Text field will look like this $0.00
if you type 1,2,3,a,b,c ...
0
votes
2answers
84 views
Scroll to top does no work
Hello I am new to jQuery and I have a problem!
I want to scroll to the top, in a page that is loaded via AJAX call.
This works (test):
$(document).on('click', '#top_icon', function() {
...
0
votes
1answer
385 views
Web Deploy Impersonation (Management Service Delegation) does not work
I’m trying to use web deploy to deploy my dacpac package, which comes to executing some sql scripts.
I have local windows account called .\DeploymentService, which is in local Administrators group, ...
0
votes
1answer
154 views
Ignore child elements using jQuery event delegation
I am using the on method to delegate a click event to injected divs. These injected divs will have child divs as well that are positioned outside of their parent div. I am looking to ignore the click ...
0
votes
1answer
141 views
Communication between controllers iOS
first of all I want to show you my storyboard:
I have a Label in the CUVCViewController (the first view of the left) and a UISlider in the CUVCViewControllerPageTwo (the second view). When I tap on ...
0
votes
1answer
86 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 ...
2
votes
2answers
277 views
Added protocol to AppDelegate not registering
As soon as my first view loads my location controller calls -(void)locationFound to its delegate, which is [UIApplication sharedApplication].delegate (my AppDelegate)
I have a corresponding protocol ...
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 ...
3
votes
0answers
242 views
Using kerberos delegation in WCF across domains and passing ClientCredentials
I've got a client app in one domain (Domain1) that needs to access a WCF service on an app server in another domain (Domain2) (with no trust). Users have to enter their Domain2 credentials into the ...
3
votes
1answer
2k views
SharePoint 2013 / IIS 7.5 Impersonation/Delegation/Double Hop
Ok, I have spent about 15 hours trying to resolve this problem and I have finally been resigned to posting here to try to get it resolved. I know this post is very long but I have done all the normal ...
0
votes
2answers
105 views
GCD and delegation on which thread?
I am trying to figure out if this code is updating the UI on the main thread. This code is in a class I made specifically for downloading the JSON feed. After getting the data, I parse it to return an ...
1
vote
0answers
392 views
Event bubbling/capturing/delegation in ember
It is hard to expliain the actual code as i dont exactly know where the problem is, but it will be great if anyone can help in explaining how events are delegatd/bubbled in Ember.
I have a case where ...
21
votes
8answers
704 views
Long delegation chains in C++
This is definitely subjective, but I'd like to try to avoid it
becoming argumentative. I think it could be an interesting question if
people treat it appropriately.
In my several recent ...
0
votes
1answer
49 views
WCF Impersonation doubts
What impersonation level is required when implementing a service that needs to access out-of-process resources on behalf of the original caller?
According to MSDN
Impersonation: The server ...
0
votes
0answers
79 views
Master-detail delegation
I'm creating an iPad app and I'm very new to iOS development and have a question. I need to setup a two way communication between my master and detail view controllers. The tutorial books I've been ...
0
votes
1answer
40 views
Is there a way to be notified when a view controller load a new view controller modally?
I need to be notified about modal view controller presentation, I know that I can do using NSNotificationCenter posting and observing my custom notifications, but I'd like to know if these kind of ...
2
votes
0answers
157 views
Google Closure event delegation a'la jQuery live/on
I need to delegate event to newly created elements, I need to attach handler to their creation event. Something similar to: onCreate
I do not want to bind the event to the element after the creation ...
1
vote
0answers
49 views
Accessing & Messaging DetailVC in a UISplitViewController
I'm using a UISplitViewController that uses two UINavigationController's, one for MasterVC and another for the DetailVC. I'm trying to send messages to the DetailVC's topViewController from a VC in ...
0
votes
1answer
49 views
Is this the correct “layout” for delegation?
I'm building a simple calendar application based in a single view controller. The view controller has a hierarchy as follows:
CDViewController
CalendarView
EventView
AgendaView
...
1
vote
1answer
62 views
Adding a collection of functions to an object at runtime
What id like to do is implement the roles programming technique within my code. I am using C++. C++11 is fine.
What i need is to be able to define a collection of functions. This collection can not ...
2
votes
1answer
164 views
Why are my NSURLConnection delegation methods not called?
I've done exactly what this official documentation instructed. I created a console project for testing purpose. And then I created a class called RequestSender (see code below) and I made an instance ...
0
votes
2answers
92 views
How to get custom NSManagedObject subclass from selected UITableViewCell
I have a UITableView in my app that displays some Location objects which I have created as part of a Core Data store. The UITableViewCell actually just displays the name of the Location (one of the ...
3
votes
2answers
247 views
Double hop SQL delegation not working
I've been trying to diagnose this for some time, and unfortunately Im still getting the dreaded anonymous logon issue when trying to connect to a sql db as a domain user.
Steps taken:
App Pool ...
0
votes
0answers
144 views
Android: Delegate UI
I'm currently converting an SDK with a accompanying a sample app from iOS to Android.
When you initialize the SDK you pass the application object as a parameter. In the SDK some asynchronous server ...
0
votes
1answer
1k views
Delegation and Data Source iOS
I have been learning about Delegation and Data Sources for iOS programming and need to ask, is there any differences that you need to do when you make a data source protocol than a delegate protocol?
...
2
votes
2answers
183 views
Java - Is delegation the good solution in this case?
Here is my question :
I have a huge class (HugeClass) and I wanted to split it into several little classes (LittleClass1, LittleClass2, ...). I heard about delegation. It sounds good, but I think it ...
0
votes
1answer
211 views
ASP.NET app double-hop issue when sending email to exchange
I created an ASP.NET application for an internal purpose, where the domain user accesses a simple web form, fills in the form and submits. The application impersonates the user and sends an email as ...
2
votes
1answer
284 views
Setting the modal view controller's delegate to nil with ARC
I'm writing app for iOS 4 with ARC. I'm presenting and dismissing modal view controllers through the standard delegate pattern. ARC in iOS 4 doesn't support weak references, so, I mark the child view ...
1
vote
0answers
87 views
save method and delegate in detailTableViewController fail in Xcode
I have a bug when I save information passed by a user in a detailTableViewController. Though when I force the debugger by pressing lecture, it carries on performing the coredata job, etc.
Here is my ...
3
votes
7answers
460 views
How does UITableViewCell communicate with its UITableView?
I am currently creating a custom grid view, which means that I am creating a class that has a lot in common with UITableView. One of the things that I want to get right is the communication of the ...
2
votes
5answers
190 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 ...
1
vote
0answers
24 views
Using buttons on different views and classes to trigger view switch from the main view controller
I am using storyboard to create my page.. each with it's own class... from the mainViewController, I manage the view change with a swipe gesture recognizer... So far so good... But I have certain ...
1
vote
1answer
174 views
NSComboBox Delegation
I have an NSComboBox with a datasource and it works perfectly when you click on the triangle and select one of the items by clicking on it. However, I also want it to allow the user to type in the ...
1
vote
1answer
598 views
Why does kerberos delegation only work in Internet Explorer?
I've currently setup kerberos delegation on an IIS web server.
Users connect to a website on the webserver and can call for a SSRS report to be generated within the web application. The web ...
2
votes
1answer
202 views
Python: Should I use delegation or inheritance here?
I am pondering if I should use inheritance or delegation to implement a kind of wrapper class. My problem is like this: Say I have a class named Python.
class Python:
def __init__(self):
...
1
vote
1answer
679 views
delegate is not respond
I am trying to use delegation between two Viewcontrollers, but unfortunately my delegate doesn´t get fired. I hope somebody can help me fix the problem. I have a ViewContoller called ...
0
votes
1answer
219 views
Cannot find protocol declaration for changeMapTyp iOS
I currently get the error "cannot find protocol declaration for changeMapTyp" and I have no idea why. I imported all the required files, but it hasn't solved my problem.
As mentioned in my ...
