Delegates can refer to several concepts. An object can rely on another (a delegate) to perform a function. Delegation can also refer to programming language feature making use of the method lookup rules for dispatching self-calls. In C#, a delegate defines which method to call when an event is ...

learn more… | top users | synonyms (1)

0
votes
0answers
14 views

Mvc HtmlHelper chaining to generate Dropdown Submenu

I am developing a web application using MVC4 with Twitter Bootstrap. I want to create a custom dropdown menu HtmlHelper similar to this one ...
0
votes
0answers
28 views

NSURLConnectionDelegate connection:didFailWithError: when will this be called?

I am creating that uses NSURLConnection to retrieve a JSON formatted string from a webpage which will later be parsed to show information. I have implemented the NSURLConnectionDelegate, and i wanted ...
2
votes
1answer
71 views

how to make a block execute code immediately and after time delay

I'm running into this weird bug.. basically I got this blocK definition: UILabel* filterButtonLabel; void (^labelUpdater)(NSString *, id) = ^(NSString* newLabelText, id delegate){ ...
1
vote
2answers
45 views

how to execute a method based on a string which contains its name

I have an Object which contains several methods and outside of it I have a list of strings where each of the strings value is the name of the Method. I would like to Execute the the method based on ...
0
votes
1answer
36 views

Omit sender of delegates

Is it possible to send reference of 'sender' without specifying it explicitly as a parameter in delegate-based event handling? I have a internal class which raises some events and I want to call the ...
1
vote
1answer
28 views

Signaling options change in iOS

In my first "real" iOS application, I want to push an options view and signal the main controller if any options are changed. The main controller creates an options object and passes it to the option ...
1
vote
1answer
43 views

C# Delegate as object

Disclaimer: the unit-test related info for this question is not really relevant - you can skip to "The Problem" if you're not familiar with this, but it helps set the context. I have a class that I ...
0
votes
2answers
53 views

Expression and delegate in c#

I have below code that is a pseudo-code. I want to make this function can accept a Expresstion type, compile this expression and invoke it with proper parameters. public static void ...
0
votes
1answer
44 views

SerialPort C# custom delegate from DataReceived

I'm doing a class for working with the serial port. It's all going quiet until the item to receive a data through the serial port, the class raise an event in the main application. My question is: ...
0
votes
0answers
10 views

Can't get my WebView WebPolicyDelegate to work on Mac OSX

I have a class derived from WebView and am trying to implement a delegate so I can intercept clicked web links. I'd like to decide whether to allow WebView to navigate to the link or sometimes take a ...
0
votes
2answers
70 views

How can I pass a parameter to a delegate callback method?

This seems really odd, so I doubt it's good practice but I'm working on an old app and I need to make some updates without totally redesigning the whole thing. Currently, I have a UIButton which has ...
0
votes
2answers
22 views

Delegate only triggering one class, but not other classes that implement same protocol

I need some help in understanding how to implement a delegate so that all classes that implement the protocol gets a change to perform its actions based on protocol method(s) that gets triggered. I ...
1
vote
2answers
57 views

Is delegate still unsafe unretained?

I'm reading BNR 3rd Edition, and it says that delegate is unsafe unretained instead of weak by default for backwards compatibility. And I was wondering if this is still true for the newest version of ...
0
votes
0answers
20 views

Delegate execution in Unity3d using c#

I have callbacks implements in my unity3d game in such a way that they are all nested,i.e. one callback leads to another call, whose callback leads to another call and so on upto 5 times. But the last ...
4
votes
1answer
73 views

Lambdas and type inference

I'm having a bit of trouble understanding the reason behind why the following code is giving me an error: var funs = Enumerable.Range(0, 10).Select(x => (int y) => x + y); foreach (var fun in ...
1
vote
1answer
16 views

How do I construct a delegate and pass it as a parameter to be used in a lambda expression

I am refactoring some code the original statement was var deleteList = new List<FilterParameter>(); foreach (FilterParameter param in FilterParameters) { if (memlist.All(x => ...
3
votes
1answer
31 views

Using Array.FindAll method to find subarray which meets criteria

I have an application in Visual Basic.Net and need to find all elements within an array which meet a certain condition. Dim result As my_obj() = Array.FindAll(lstData, HasToBeSent) Where the ...
0
votes
1answer
19 views

Get DidEndScroll Delegate Method from Custom UITableView

I am using the a custom UITableView called UIBubbleTableView. In my View Controller that I am setting up the UIBubbleTableView everything works fine. I however am trying to implement lazy loading so ...
1
vote
4answers
73 views

How can I wait for a NSURLConnection delegate to finish before executing the next statement?

This has been a hard one to search. I found a similar question, iOS 5 Wait for delegate to finish before populating a table?, but the accepted answer was 'Refresh the table view,' and that does not ...
3
votes
3answers
48 views

Adding String functionality to class

Consider this class class Duck attr_accessor :name def initialize(name) @name = name || 'Donald' end # Some quacking methods.. def to_s "#{@name} (Duck)" end end I would ...
0
votes
0answers
24 views

iOS tabbar centerButton action

I implemented my custom button for a tabbar with this code: - (void)addCenterButtonWithImage:(UIImage *)buttonImage highlightImage:(UIImage *)highlightImage target:(id)target action:(SEL)action { ...
0
votes
1answer
32 views

Tab Bar Controller - how to reselect a selected tab

I started with the default Tabbed Application, added some tabs in the Storyboards with their own viewcontrollers, how can I know when a tab that's already selected, get's touched again? Tab 1 goes to ...
-2
votes
0answers
18 views

Issue with a delegate in C#

I'm using form1. I wanna open form 2 and get data from GridView in Form1 to TextEdits in Form2 when I double click on GridView . But (MyGetData != null) is true, it run outside if. How do I ...
0
votes
1answer
60 views

How to get event name in called method

I am using reflection to add an event handler to an event : var eventInfo = type.GetEvent(eventName); MethodInfo mi = GetType().GetMethod("TestMethod", BindingFlags.Instance | ...
0
votes
2answers
38 views

Global function repository

I have several Control such as ToolStripMenuItem and Button that need to have a function bound to their click event. They will either generate a new Form or add a TabPage to a current TabControl. I ...
0
votes
3answers
42 views

How can delegate method run before ViewDidLoad

1.ViewControllerA sent ViewControllerB a key with delegate 2.When ViewControllerB been loaded the key value is correct, but I need to use the key for viewDidLoad So the problem is:How can delegate ...
0
votes
0answers
40 views

viewController stays null while I try to set it as the dataSource for a view

I am trying to build a calculator with a graphing function, and I am using MVC designs. So there are basically 2 MVC's CalculatorViewController and its view and model GraphViewController and its ...
0
votes
1answer
33 views

What NSTextFieldDelegate trully is?

The declaration of NSTextFieldDelegate really confuse me a lot. In Xcode, I click "jump to defination" of NSTextFieldDelegate, and found: @protocol NSTextFieldDelegate ...
1
vote
1answer
24 views

How to implement ObjectListView delegate

I am trying to use ObjectListView, and set a delegate to influence the AspectToStringConverter process. the code is very simple public Form1() { InitializeComponent(); ...
2
votes
1answer
54 views

What C# class pattern should I use for mobile client / server objects [closed]

I am developing a client / server business software system using a custom HTTP based design that works similarly to CSLA.NET. What I will be doing is creating client and server objects where client ...
0
votes
2answers
25 views

protocol and delegate not accessing method

I am trying to pass some data back to my UIView, its abit of a complicated situation I will try to explain it. I have my mainViewController // request is made to RequestClass requestClass // ...
0
votes
1answer
34 views

Communication between container, delegate protocol not working?

I'm building an iPad app with storyboards. I have a "data page" (view) where I put one big container with a tableview which contains data. then I have 3 small containers above, also with tableviews, ...
1
vote
1answer
21 views

Subclass communicate with Root Class

I am trying to make a dynamic Registration Form Structure. So based on the providing xml or data, it will generate a dynamic form. Here is the screen shot of my Class hierarchies. Here, Form class ...
1
vote
1answer
24 views

Serialize delegate in rails

I have 3 models in Rails: User, UserProfile and Post Something like this: class Post < ActiveRecord::Base attr_accessible :content, :post_type belongs_to :user delegate :fullname, :to ...
2
votes
2answers
206 views

C# Actions and GC

I am using Actions in C# and I was wondering if I need to set the instance of Action to null once I wish the GC to collect the objects properly? Here is an example: public class A { public Action a; ...
-1
votes
1answer
39 views

iOS UIWebView webViewDidFinishLoad is not called sometimes

Everything works fine, but sometimes uiwebview did not finish the load. I guess that sometimes uiwebview waits to long for response and than do not finish load. Had someone have familiar issue? Yes, ...
4
votes
5answers
142 views

What does this line of C# code actually do?

I'm trying to understand what a block of code in an application does but I've come across a bit of C# I just don't understand. In the code below, what does the code after the "controller.Progress +=" ...
4
votes
3answers
43 views

Return from parent method inside of Action<string>

I am working inside of a method that performs a series of validation checks and should any of those checks fail it calls an Action<string> to run some common rejection code. The set up is ...
-3
votes
5answers
72 views

What is the difference between UILocalnotification and delegates? [closed]

I have an application in which i want to get notified whether the method is called or not from other class. So, i am a bit confused whether to use UILocalnotification or create a delegate method using ...
0
votes
1answer
34 views

Recursive UITableViewController and delegates

I have a UITableViewController that will recursively call itself n times: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.section == 0) ...
-1
votes
2answers
49 views

How make arrays of delegates and use this array?

I have to write class Eve to make some code below: class MainClass { int sum = 5; public void add (int x) { sum += x; } public static void write (int x) { ...
1
vote
2answers
53 views

C# Catching Exception From Invoked Delegate on another Thread

I have some code as follows. This is running on "Thread 2" WebBrowser browser = this.webBrowser browser.Invoke(new MethodInvoker(delegate { ...
0
votes
0answers
12 views

Lightweight crossplatform library/libraries for threading, mutual exclusion, events & delegation?

I've found Boost and QT to provide cross-platform solutions to threading, events and mutual exclusion, but both these libraries are bloated and programmers don't like using them. Besides, QT has a ...
2
votes
5answers
48 views

C# - Passing delegate a param and extracting it

I have the following delegation situation: string myVal = "test"; Step(x => MethodToInvoke(myVal)); private T Step<T>(Func<string, T> method){ str = ;//Where do I get the string ...
0
votes
2answers
39 views

c#, .net, delegate, asynchronous callback. What am I doing wrong here?

Heres a little class for a button in a menu in a game. I'd like to be able to pass a delegate method _triggerMethod when I'm instantiating each button. Then that delegate method will get called when ...
0
votes
3answers
51 views

C# Using a Timer to Affect Instances While Accepting User Input

I am trying to learn c# by making a tetris console application. I have a gameBoard class ("gb" in the code) and a block class ("bl" in the code.) The code below is what I have so far to move a block ...
0
votes
1answer
21 views

In iOS prevent RootViewController to become God like by extra 'controller' to display MFMailComposeViewController

i've asked a question about the same issue before on stackoverflow and the solutions worked, but it was not a compatible iOS 4.3 solution, and i thought my design is not the right one. First of all i ...
0
votes
1answer
33 views

How to set UITextField for decimal values?

I have a ManageItemVC that has a bunch of UITextFields, and one is for price. I've put a placeholder as 0.00, and the user can use the decimal keyboard to input. I'd like to always keep it in a #.## ...
1
vote
2answers
43 views

Create delegate with types known at runtime

How can I create a Delegate with types only known at run time ? I would like to do the following : Type type1 = someObject.getType(); Type type2 = someOtherObject.getType(); Func<type1, type2 ...
0
votes
2answers
35 views

Setting up a delegate to determine a login sequence has completed

I am trying to follow this question to setup a delegate for a login sequence:- How do I set up a simple delegate to communicate between two view controllers? In my application I have a Main View ...

1 2 3 4 5 95