active questions tagged delegates - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T17:35:13Zhttp://stackoverflow.com/feeds/tag/delegateshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1919341/changing-ui-elements-from-another-thread-in-net1Changing UI elements from another thread in .NETpelesl2009-12-17T03:50:45Z2009-12-17T08:44:23Z
<p>I don't get it. If I want to change the text on a button from a thread other than the UI thread in Visual Basic .NET, I need to use a delegate, and do something along the lines of</p>
<pre><code> Private Delegate Sub SetTextDelegate(ByVal TheText As String)
Private Sub delSetText(ByVal TheText As String)
Button1.Text = TheText
End Sub
Private Sub ChangeText(ByVal TheText As String)
If Button1.InvokeRequired Then
Me.BeginInvoke(New SetTextDelegate(AddressOf delSetText), TheText)
Else
delSetText(TheText)
End If
End Sub
</code></pre>
<p>Of course I can make more generic functions that aren't so hard-wired. But still, it seems like a lot of typing. Am I doing this in a roundabout way? How is this not included in the control properties---why would anyone leave this up to the programmer if it is required?</p>
http://stackoverflow.com/questions/1914745/objective-c-i-get-nsobject-doesnotregognizeselector-even-though-i-checked-with-re1Objective-c I get NSObject doesNotRegognizeSelector even though I checked with RespondsToSelectorCraig Warren2009-12-16T13:46:30Z2009-12-16T13:48:49Z
<p>I have been trying to write a delegate to a view controller which has a method which will call back the sender when it is done</p>
<pre><code>-(void) doSomething:(id)target action:(SEL)action object:(id)object{
//Do Some work
//Produce an NSArray* called array
object = array;
if([target respondsToSelector:action])
{
[target action];
}
}
</code></pre>
<p>The idea being that the action method in the sender also has a reference to object and it can read the results and do something once the selector has been called to use the data.</p>
<p>The problem I am having is that [target respondsToSelector:action] returns true so the code tries to call the selector but then I get an SIGABRT signal and the message that NSObject -doesNotRegogniseSelector.</p>
<p>Does anyone know where I am going wrong?</p>
http://stackoverflow.com/questions/724143/how-do-i-create-a-delegate-for-a-net-property4How do I create a delegate for a .NET property?Graphain2009-04-07T04:30:36Z2009-12-15T13:56:58Z
<p>Hi,</p>
<p>I am trying to create a delegate (as a test) for:</p>
<pre><code>Public Overridable ReadOnly Property PropertyName() As String
</code></pre>
<p>My intuitive attempt was declaring the delegate like this:</p>
<pre><code>Public Delegate Function Test() As String
</code></pre>
<p>And instantiating like this:</p>
<pre><code>Dim t As Test = AddressOf e.PropertyName
</code></pre>
<p>But this throws the error:</p>
<blockquote>
<p>Method 'Public Overridable ReadOnly Property PropertyName() As
String' does not have a signature
compatible with delegate 'Delegate
Function Test() As String'.</p>
</blockquote>
<p>So because I was dealing with a property I tried this:</p>
<pre><code>Public Delegate Property Test() As String
</code></pre>
<p>But this throws a compiler error.</p>
<p>So the question is, how do I make a delegate for a property?</p>
http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c1Cast delegate to Func in C#DreamWalker2009-12-15T11:22:29Z2009-12-15T12:34:10Z
<p>I have code:</p>
<pre><code>public delegate int SomeDelegate(int p);
public static int Inc(int p) {
return p + 1;
}
</code></pre>
<p>I can cast <code>Inc</code> to <code>SomeDelegate</code> or <code>Func<int, int></code>:</p>
<pre><code>SomeDelegate a = Inc;
Func<int, int> b = Inc;
</code></pre>
<p>but I can't cast <code>Inc</code> to <code>SomeDelegate</code> and after that cast to <code>Func<int, int></code> with usual way like this:</p>
<pre><code>Func<int, int> c = (Func<int, int>)a; // Сompilation error
</code></pre>
<p>How I can do it?</p>
http://stackoverflow.com/questions/1900887/readymade-delegates-in-asp-net-2-00Readymade delegates in ASP.NET 2.0Russel2009-12-14T13:21:06Z2009-12-14T14:27:14Z
<p>What are the readymade delegates like</p>
<pre><code>delegate void Action<T>(T obj);
delegate TOutput Converter<TInput, TOutput>(TInput input);
delegate Boolean Predicate<T>(T obj);
Function delegate
</code></pre>
<p>available in ASP.NET 2.0.</p>
http://stackoverflow.com/questions/1900213/c-fire-and-forget-call-inside-a-webmethod3C# Fire and Forget call inside a WebMethodJamesW2009-12-14T10:57:49Z2009-12-14T11:29:01Z
<p>We have a C# WebMethod that is called synchronously by a Delphi CGI (don't ask!). This works fine except when we switch to our disaster recovery environment, which runs a lot slower. The problem is that the Delphi WinInet web request has a timeout of 30 seconds, which cannot be altered due a Microsoft-acknowledged bug. In the disaster recovery environment, the C# WebMethod can take longer than 30 seconds, and the Delphi CGI falls flat on its face.</p>
<p>We have now coded the C# WebMethod to recognise the environment it is in, and if it is in disaster recovery mode then we call the subsequent method in a thread and immediately respond to the CGI so that it is well within the 30 seconds. This makes sense in theory, but we are finding that these threaded calls are erratic and are not executing 100% of the time. We get about a 70% success rate.</p>
<p>This is clearly unacceptable and we have to get it to 100%. The threads are being called with Delegate.BeginInvoke(), which we have used successfully in other contexts, but they don't like this for some reason.... there is obviously no EndInvoke(), because we need to respond immediately to the CGI and that's the end of the WebMethod.</p>
<p>Here is a simplified version of the WebMethod:</p>
<pre><code>[WebMethod]
public string NewBusiness(string myParam)
{
if (InDisasterMode())
{
// Thread the standard method call
MethodDelegate myMethodDelegate = new MethodDelegate(ProcessNewBusiness);
myMethodDelegate.BeginInvoke(myParam, null, null);
// Return 'ok' to caller immediately
return 'ok';
}
else
{
// Call standard method synchronously to get result
return ProcessNewBusiness(myParam);
}
}
</code></pre>
<p>Is there some reason that this kind of 'fire and forget' call would fail if being used in a WebService WebMethod environment? If so then is there an alternative?</p>
<p>Unfortunately altering the Delphi side is not an option for us - the solution must be in the C# side.</p>
<p>Any help you could provide would be much appreciated.</p>
http://stackoverflow.com/questions/1899855/two-methods-that-differ-only-in-linq-where-part-delegate1Two methods that differ only in LINQ where part - delegate?tomaszs22009-12-14T09:21:02Z2009-12-14T11:23:25Z
<p>I have a method:</p>
<pre><code>internal List<int> GetOldDoctorsIDs
{
var Result = from DataRow doctor in DoctorTable.Rows
where doctor.Age > 30
select doctor.ID
List<int> Doctors = new List<int>();
foreach (int id in Result)
{
//Register getting data
Database.LogAccess("GetOldDoctorsID: " + id.ToString());
if (Database.AllowAccess(DoctorsTable, id))
{
Doctors.Add(id);
}
}
}
</code></pre>
<p>So this gets old doctors and does other things. Now I would like to create method GetExpensiveDoctors. It will look like this above, but in place of:</p>
<pre><code>where doctor.Age > 30
</code></pre>
<p>I will have:</p>
<pre><code>where doctor.Cost > 30000
</code></pre>
<p>How to create elegant, object oriented solution for this?
Should I use delegate or other thing?</p>
http://stackoverflow.com/questions/1870705/objc-delegate-methods-never-gets-called1ObjC delegate methods never gets calledmvexel2009-12-08T23:52:41Z2009-12-12T11:08:48Z
<p>Hi all,</p>
<p>I am creating instances of a class FlickrImage parsing a Flickr API photos response. The class has a method getLocation that does another API call to get the geolocation:</p>
<pre><code>NSLog(@"getting location for %i",self.ID);
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
OFFlickrAPIRequest *flickrAPIRequest = [[OFFlickrAPIRequest alloc] initWithAPIContext[appDelegate sharedDelegate].flickrAPIContext];
[flickrAPIRequest setDelegate:self];
NSString *flickrAPIMethodToCall = @"flickr.photos.geo.getLocation";
NSDictionary *requestArguments = [[NSDictionary alloc] initWithObjectsAndKeys:FLICKR_API_KEY,@"api_key",self.ID,@"photo_id",nil];
[flickrAPIRequest callAPIMethodWithGET:flickrAPIMethodToCall arguments:requestArguments];
[pool release];
</code></pre>
<p>I have implemented the callback method that would catch the response from the API and update the FlickrImage instance with the geolocation data - but it never gets called. Here's where the instances get created:</p>
<pre><code>NSDictionary *photosDictionary = [inResponseDictionary valueForKeyPath:@"photos.photo"];
NSDictionary *photoDictionary;
FlickrImage *flickrImage;
for (photoDictionary in photosDictionary) {
flickrImage = [[FlickrImage alloc] init];
flickrImage.thumbnailURL = [[appDelegate sharedDelegate].flickrAPIContext photoSourceURLFromDictionary:photoDictionary size:OFFlickrThumbnailSize];
flickrImage.hasLocation = TRUE; // TODO this is actually to be determined...
flickrImage.ID = [NSString stringWithFormat:@"%@",[photoDictionary valueForKeyPath:@"id"]];
flickrImage.owner = [photoDictionary valueForKeyPath:@"owner"];
flickrImage.title = [photoDictionary valueForKeyPath:@"title"];
[self.flickrImages addObject:[flickrImage retain]];
[flickrImage release];
[photoDictionary release];
}
</code></pre>
<p>The <code>retain</code> is there because I thought it might help solve this but it doesn't - and doesn't the NSMutableArray (flickrImages is a NSMutableArray) retain its members anyway?</p>
<p>EDIT I should add that the <code>getLocation</code> method (first code snippet) is launched in a thread:
[NSThread detachNewThreadSelector:@selector(getLocation) toTarget:self withObject:nil];</p>
http://stackoverflow.com/questions/1890595/checking-whether-an-object-args-satisfies-a-delegate-instance4Checking whether an `object[] args` satisfies a Delegate instance?DxCK2009-12-11T20:15:13Z2009-12-11T21:19:14Z
<p>I have the following method signature:</p>
<pre><code>public static void InvokeInFuture(Delegate method, params object[] args)
{
// ...
}
</code></pre>
<p>The delegate and the arguments are saved to a collection for future invoking.</p>
<p>Is there any way i can check whether the arguments array satisfies the delegate requirements without invoking it?</p>
<p>Thanks.</p>
<p><strong>EDIT:</strong>
Thanks for the reflection implementation, but i searching for a built-in way to do this. I don't want to reinvert the wheel, the .NET Framework already have this checking implemented inside Delegate.DynamicInvoke() somewhere, implementation that handles all those crazy special cases that only Microsoft's developers can think about, and passed Unit Testing and QA. Is there any way to use this built-in implementation?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1884061/c-delegate-with-ref-parameter0C# - Delegate with ref parameterTaylor L2009-12-10T21:13:45Z2009-12-10T21:20:04Z
<p>Is there any way to maintain the same functionality in the code below, but without having to create the delegate? I'm interfacing with a 3rd-party API that contains a number of various DeleteSomethingX(ref IntPtr ptr) methods and I'm trying to centralize the code for the IntPtr.Zero check. </p>
<pre><code>private void delegate CleanupDelegate(ref IntPtr ptr);
...
private void Cleanup(ref IntPtr ptr, CleanupDelegate cleanup)
{
if (ptr != IntPtr.Zero)
{
cleanup(ref ptr);
}
}
</code></pre>
http://stackoverflow.com/questions/1876589/how-to-accept-any-delegate-as-a-parameter3How to accept ANY delegate as a parameterSonOfPirate2009-12-09T20:18:01Z2009-12-09T22:47:56Z
<p>I am interested in writing a method that would accept another method as a parameter but do not want to be locked into a specific signature - because I don't care about that. I am only interested whether the method throws an exception when invoked. Is there a construct in the .NET Framework that will allow me to accept any delegate as a parameter?</p>
<p>For example, all of the following calls should work (without using overloads!):</p>
<pre><code>DoesItThrowException(doSomething(arg));
DoesItThrowException(doSomethingElse(arg1, arg2, arg3, arg4, arg5));
DoesItThrowException(doNothing());
</code></pre>
http://stackoverflow.com/questions/1875155/using-delegates-in-c-asynchronously0Using Delegates in C# AsynchronouslyTooFat2009-12-09T16:41:44Z2009-12-09T22:24:13Z
<p>I have the following delegate</p>
<pre><code>delegate void UpdateFileDelegate(long maxFileID);
</code></pre>
<p>That I am calling from a WinForms app like so</p>
<pre><code>UpdateFileDelegate FD = new UpdateFileDelegate(ClassInstance.UpdateFile);
FD.BeginInvoke(longIDNumber,null,null);
</code></pre>
<p>It runs asynchronously but the question I have is how can I tell when the Method is done executing so I can let the end user know?</p>
<p>Update:
Thanks to the recommendations below the following code does the trick.
Also this <a href="http://www.yoda.arachsys.com/csharp/events.html" rel="nofollow">article</a> was helpful in getting me to understand what my code is actually doing.</p>
<pre><code>delegate void UpdateFileDelegate(long maxFileID);
UpdateFileDelegate FB = new UpdateFileDelegate(ClassInstance.UpdateFile);
AsyncCallback callback = new AsyncCallback(this.CallBackMethod);
IAsyncResult result = FB.BeginInvoke(longIDNumber);
private void CallBackMethod(IAsyncResult result)
{
AsyncResult delegateResult = (AsyncResult)result;
UpdateFileDelegate fd = (UpdateFileDelegate)delegateResult.AsyncDelegate;
fd.EndInvoke(result);
MessageBox.Show("All Done!");
}
</code></pre>
http://stackoverflow.com/questions/1863664/providing-multiple-instances-of-a-form-yet-processing-events-one-at-a-time0Providing multiple instances of a form yet processing events one at a timeJamieK2009-12-07T23:39:01Z2009-12-08T11:33:48Z
<p>I need to be able to let multiple instances of the same form be open as my application can be used in different places at once. On the other hand i need to be able to process the operations during the "OK" event one at a time to ensure data is stored safely and not overwritten by another form instance by accident.</p>
<p>I show my form using the .Show() method as i am using a few delegates in it:</p>
<pre><code> private void newToolStripMenuItem_Click(object sender, EventArgs e)
{
bookingForm = new BookingForm(AddMemberBooking, AddUserBooking, CloseBooking);
bookingForm.Show();
}
</code></pre>
<p>I have tried to use the mutex to allow only one event of the OK button being pressed happen at a time, i have combined this with a Thread to meet the criteria i need.</p>
<p>When i click on the "OK" button i am given the following error:</p>
<p>"Cross-thread operation not valid: Control 'comboBoxDay' accessed from a thread other than the thread it was created on."</p>
<p>This is the code for my booking form class:</p>
<pre><code>using System;
</code></pre>
<p>using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;</p>
<p>namespace Collection
{
//Allows the class to be serialized
[Serializable()]</p>
<pre><code>public delegate void AddMemberBookingMethod(int date, int time, int mNo);
public delegate void AddUserBookingMethod(int date, int time, string fName, string lName, string pCode);
public delegate void CloseBookingFormMethod();
public partial class BookingForm : Form
{
public CloseBookingFormMethod CloseBookingForm;
public AddMemberBookingMethod AddMemberBooking;
public AddUserBookingMethod AddUserBooking;
private Mutex bookingMut = new Mutex();
private Thread thread;
public bool IsUser;
public BookingForm(AddMemberBookingMethod ambm, AddUserBookingMethod aubm, CloseBookingFormMethod cbfm)
{
InitializeComponent();
AddMemberBooking = ambm;
AddUserBooking = aubm;
CloseBookingForm = cbfm;
checkBoxMember.Checked = true;
//Control.CheckForIllegalCrossThreadCalls = false;
}
private void checkBoxUser_CheckedChanged(object sender, EventArgs e)
{
if (checkBoxUser.Checked)
{
IsUser = true;
checkBoxMember.CheckState = CheckState.Unchecked;
textBoxMNo.Enabled = false;
textBoxFName.Enabled = true;
textBoxLName.Enabled = true;
textBoxPCode.Enabled = true;
}
else
{
IsUser = false;
checkBoxMember.CheckState = CheckState.Checked;
textBoxMNo.Enabled = true;
textBoxFName.Enabled = false;
textBoxLName.Enabled = false;
textBoxPCode.Enabled = false;
}
}
private void checkBoxMember_CheckedChanged(object sender, EventArgs e)
{
if (checkBoxMember.Checked)
{
IsUser = false;
checkBoxUser.CheckState = CheckState.Unchecked;
textBoxFName.Enabled = false;
textBoxLName.Enabled = false;
textBoxPCode.Enabled = false;
}
else
{
IsUser = true;
checkBoxUser.CheckState = CheckState.Checked;
textBoxMNo.Enabled = false;
textBoxFName.Enabled = true;
textBoxLName.Enabled = true;
textBoxPCode.Enabled = true;
}
}
private void buttonOK_Click(object sender, EventArgs e)
{
this.thread = new Thread(new ThreadStart(MakeBooking));
this.thread.Name = "bookingThread";
this.thread.Start();
}
private void MakeBooking()
{
this.bookingMut.WaitOne();
int date = this.comboBoxDay.SelectedIndex;
int time = this.comboBoxTime.SelectedIndex;
if (IsUser)
{
string fName = textBoxFName.Text;
string lName = textBoxLName.Text;
string pCode = textBoxPCode.Text;
AddUserBooking(date, time, fName, lName, pCode);
}
else
{
int mNo = int.Parse(textBoxMNo.Text);
AddMemberBooking(date, time, mNo);
}
this.bookingMut.ReleaseMutex();
CloseBookingForm();
}
private void buttonClose_Click(object sender, EventArgs e)
{
CloseBookingForm();
}
}
</code></pre>
<p>}</p>
<p>I realise i may not be doing this in the most efficient way but time is a bit of a factor.
I've researched the error and have heard of using delegates and .Invoke() but im still not entirely sure how to fix it.</p>
<p>Thanks!</p>
<p>EDIT:</p>
<p>I've found this code snippet when searching for a fix to my problem, i don't understand where/how i would use it.</p>
<pre><code>if(this.InvokeRequired)
</code></pre>
<p>{
this.Invoke(new MyEventHandler(this.CreateAForm()));
return;
}</p>
http://stackoverflow.com/questions/1856670/defining-event-handlers3Defining event handlerszachary2009-12-06T21:27:34Z2009-12-06T21:44:02Z
<p>I can define an event like this(declared function):</p>
<pre><code>MyElement.Keyup +=MyDeclaredFunction
</code></pre>
<p>I can also define it like this(anonymous delegate):</p>
<pre><code>MyElement.Keyup+=new delegate(object sender, eventargs e) {};
</code></pre>
<p>I can also define it like this(lambda):</p>
<pre><code>MyElement.Keyup += (sender, e) => myfunction
</code></pre>
<p>What is the best way to do this? One case the code for the event is found with the declaration of the event... in the other they are seperated.</p>
<p>I prefer method 1</p>
<p>can anyone tell me what the pros and cons of each method might be?</p>
http://stackoverflow.com/questions/1398212/iphone-sdk-delegate-failed-to-return-after-waiting-10-seconds-in-table-view-loadi0iphone sdk delegate failed to return after waiting 10 seconds in table view loading huge data from database Mizan2009-09-09T08:04:29Z2009-12-06T07:00:00Z
<p>SendDelegateMessage: delegate failed to return after waiting 10 seconds. main run loop mode: kCFRunLoopDefaultMode
If you were not using the touch screen for this entire interval (which can prolong this wait), please file a bug.</p>
<pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
/*
//NSString *label = [self.aNote length] == 0 ? kDefaultNoteLabel : self.aNote;
NSString *label = [countriesToLiveInArray objectAtIndex:indexPath.row];
//CGFloat height = [label RAD_textHeightForSystemFontOfSize:kTextViewFontSize] + 20.0;
//return height;
float lineHeight = [ @"Fake line" sizeWithFont: [UIFont fontWithName:@"MarkerFelt-Thin" size:15] ].height;
int numLines = [label sizeWithFont: [UIFont fontWithName:@"MarkerFelt-Thin" size:15] constrainedToSize: CGSizeMake(250, lineHeight*1000.0f) lineBreakMode: UILineBreakModeTailTruncation ].height / lineHeight;
CGSize labelsize = CGSizeMake(250, (lineHeight*(float)numLines));
return labelsize.height+10;
*/
return 100;
}
</code></pre>
<p>this delegate is the prob.if i comment out this whole function then program works. ad table view use default height but is we return any kind of return value then it shows the message...please help us.</p>
http://stackoverflow.com/questions/1853727/a-method-that-executes-any-time-a-class-property-is-accessed-get-or-set3A method that executes any time a class property is accessed (get or set) ?Jeff2009-12-05T22:45:47Z2009-12-05T23:05:47Z
<p>C# - .net 3.5</p>
<p>I have a family of classes that inherit from the same base class.
I want a method in the base class to be invoked any time a property in a derrived class is accessed (get or set). However, I don't want to write code in each and every property to call the base class... instead, I am hoping there is a declarative way to "sink" this activity into the base class.</p>
<p>Adding some spice to the requirement, I do need to determine the name of the property that was accessed, the property value and its type.</p>
<p>I imagine the solution would be a clever combination of a delegate, generics, and reflection. I can envision creating some type of array of delegate assignments at runtime, but iterating over the MemberInfo in the constructor would impact performance more than I'd like. Again, I'm hoping there is a more direct "declarative" way to do this.</p>
<p>Any ideas are most appreciated!</p>
http://stackoverflow.com/questions/1033401/genericising-delegate-iasyncresult-calls0Genericising delegate/IAsyncResult callsasmorger2009-06-23T15:42:51Z2009-12-05T15:00:03Z
<p>I have a WCF web service that currently searches multiple, hard-coded dtSearch indices and then merges the resulting datasets to be returned back to the client. I have the following C# code:</p>
<pre><code>public class Search : ISearch
{
delegate DataTable PDelegate(string term, int cid);
delegate DataTable CDelegate(string term, int sid);
public DataTable SearchPIndex(string term, int cid) {/* do search */}
public DataTable SearchCIndex(string term, int sid) {/* do search */}
public DataTable SearchAll(string term, int cid, int sid)
{
PDelegate pDel = new PDelegate(SearchPIndex);
CDelegate cDel = new CDelegate(SearchCIndex);
IAsyncResult pInvoke = pDel.BeginInvoke(term, cid, null, null);
IAsyncResult cInvoke = cDel.BeginInvoke(temr, sid, null, null);
DataTable pResults = pdel.EndInvoke(pInvoke);
DataTable cResults = cdel.EndInvoke(cInvoke);
// combine the DataTables and return them
}
}
</code></pre>
<p>My question is: what is the best way to move this logic into a separate, generic class and do this for a List of 1...n objects? </p>
<p>I have a generic object that I have created that now performs all the physical searching (replacing the SearchPIndex and SearchCIndex methods), but I am uncertain as how I can integrate the delegate/IAsyncResult calls into the generic. </p>
<p>Is there a best-practice I can follow for this?</p>
http://stackoverflow.com/questions/1848604/assign-iboutlet-from-appdelegate-variable-in-an-array-in-a-view-controller0Assign IBOutlet from appDelegate variable in an Array in a view Controller.Digiguy2009-12-04T17:56:44Z2009-12-04T19:09:19Z
<p>Hello Everyone,</p>
<p>I have what seams simple, but I just cannot get it to work.
I have a variable coming into a ViewController(presented by a modal view) and in the viewController I access the appDelelgate to get at a variable in the passed NSArray. I can verify that the variable is availible with my NSLog just before I make a mess of assigning it, so I know it is there.
in the .h file is the following;</p>
<pre><code>@class ViolinMakerAppDelegate;
@interface DetailsViewController : UIViewController
{
ViolinMakerAppDelegate *dappDelegate;
DetailsViewController *detailsView;
IBOutlet UIViewController *modalViewController;
IBOutlet UITextView *violinMakerDescription;
}
@property (retain, nonatomic) ViolinMakerAppDelegate *dappDelegate;
@property (nonatomic, retain) DetailsViewController *detailsView;
@property(nonatomic, assign) UIViewController *modalViewController;
@property (nonatomic, retain) IBOutlet UITextView *violinMakerDescription;
</code></pre>
<p>In the .m file is the following.</p>
<pre><code> #import "DetailsViewController.h"
#import "ViolinMakerAppDelegate.h"
@implementation DetailsViewController
@synthesize detailsView, violinMakerDescription, dappDelegate;
- (void)viewWillAppear:(BOOL)animated
{
dappDelegate = (ViolinMakerAppDelegate *) [[UIApplication sharedApplication] delegate];
DetailsViewController *detailsViewController = [[DetailsViewController alloc]initWithNibName:@"DetailsViewController" bundle:nil];
self.detailsView = detailsViewController;
// Tried below, but the variable is not getting to the IBOutlet..
NSString *aviolinMakerDescription = [dappDelegate.violinMakers description];
[self.detailsView.violinMakerDescription setText:aviolinMakerDescription];
NSLog(@"violinMakerDescription: %@", [dappDelegate.violinMakers description]);
// tried -----> [self.detailsView.violinMakerDescription setText:[dappDelegate.violinMakers description]];
}
</code></pre>
<p>I am sure this is pretty simple as I know the variable 'description' has what I want in it. I just keep getting nothing but the static text in the IB. I am sure I have the IB connected right, as I have it working similarly from a the RootViewController pushing another view, and all connections are the same and very simple. One IB outlet, one UITextView.</p>
<p>It sounds crazy to me, but is there any reason that because this view is in a modal view, that it cannot load variables into text fields, only send variables back into the program from a modal controller?</p>
<p>Anyone out there like to help me get this through my dense skull what I am missing for this final code to assign it to the IBOutlet??
Thanks in Advance,
Kirk</p>
<p>@Scott
I have tried everything, and thought that was what was needed... not sure really.
Here is where I present modally the DetailsViewController, from another view, which is pushed by the root controller.</p>
<pre><code>case 0:
{
DetailsViewController *detailsViewController = [[DetailsViewController alloc] initWithNibName:@"DetailsViewController" bundle:nil];
UINavigationController *aDetailsViewController = [[UINavigationController alloc] initWithRootViewController:detailsViewController];
self.detailsView = detailsViewController;
// °°°[self.view addSubview:detailsViewController.view];
// self.violinMakerView = violinMakerViewController;
// [[self navigationController] pushViewController:detailsViewController animated:YES];
dappDelegate = (ViolinMakerAppDelegate *) [[UIApplication sharedApplication] delegate];
// This does show the variable is loaded here too.
NSLog(@"violinMakerDescription from Details Segment: %@", [dappDelegate.violinMakers description]);
// attempting to load it here as well rem out doesn't change things
[violinMakerDescription setText:[dappDelegate.violinMakers description]];
// NSLog(@"violinMakerDescription loaded in segment Segment: %@", violinMakerDescription);
[self presentModalViewController:aDetailsViewController animated:YES];
[violinMakerView release];
[detailsViewController release];
[aDetailsViewController release];
break;
</code></pre>
<p>I really don' know what I need in the DetailsViewController in the text above to get it to load the variable.... I hope it makes sense to you. Thank you for anything you can help on or shed some light on!</p>
http://stackoverflow.com/questions/1832159/when-is-it-better-practice-to-explicitly-use-the-delegate-keyword-instead-of-a-la0When is it better practice to explicitly use the delegate keyword instead of a lambda?Nathan Ridley2009-12-02T10:53:24Z2009-12-04T11:32:37Z
<p>Is there any best practice with respect to coding style with respect to explicit use of the <code>delegate</code> keyword instead of using a lambda?</p>
<p>e.g.</p>
<pre><code>new Thread(() =>
{
// work item 1
// work item 2
}).Start();
new Thread(delegate()
{
// work item 1
// work item 2
}).Start();
</code></pre>
<p>I think the lambda looks better. If the lambda is better style, what's the point of having a <code>delegate</code> keyword, other than for the fact that it existed before lambdas were implemented?</p>
http://stackoverflow.com/questions/1834469/how-to-implement-automatic-properties-in-vs-2005-for-a-delegate-callback0How to implement automatic properties in VS 2005 for a delegate callbackDucain2009-12-02T17:23:31Z2009-12-02T17:30:32Z
<p>I'm attempting to get the TwainDotNet solution I found here (<a href="http://stackoverflow.com/questions/476084/c-twain-interaction">http://stackoverflow.com/questions/476084/c-twain-interaction</a>) to compile, and I'm at my wits end.</p>
<p>This solution was obviously developed in VS 2008, and I'm working in 2005 (no choice at the moment). I've spent probably WAY to much time getting this all to compile in 2005, and I've whittled my errors down to two, both errors being the same one issue.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace TwainDotNet.WinFroms
{
/// <summary>
/// A windows message hook for WinForms applications.
/// </summary>
public class WinFormsWindowMessageHook : IWindowsMessageHook, IMessageFilter
{
IntPtr _windowHandle;
bool _usingFilter;
public WinFormsWindowMessageHook(Form window)
{
_windowHandle = window.Handle;
}
public bool PreFilterMessage(ref Message m)
{
if (FilterMessageCallback != null)
{
bool handled = false;
FilterMessageCallback(m.HWnd, m.Msg, m.WParam, m.LParam, ref handled);
return handled;
}
return false;
}
public IntPtr WindowHandle { get { return _windowHandle; } }
public bool UseFilter
{
get
{
return _usingFilter;
}
set
{
if (!_usingFilter && value == true)
{
Application.AddMessageFilter(this);
_usingFilter = true;
}
if (_usingFilter && value == false)
{
Application.RemoveMessageFilter(this);
_usingFilter = false;
}
}
}
public FilterMessage FilterMessageCallback
{
get;
set;
}
}
}
</code></pre>
<p>The compile fails on the property accessing the delegate instance.</p>
<p><strong>ERROR: 'TwainDotNet.WinFroms.WinFormsWindowMessageHook.FilterMessageCallback.get' must declare a body because it is not marked abstract or extern</strong></p>
<p>Here is the interface IWindowsMessageHook that this class implements:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
namespace TwainDotNet
{
public interface IWindowsMessageHook
{
/// <summary>
/// Gets or sets if the message filter is in use.
/// </summary>
bool UseFilter { get; set; }
/// <summary>
/// The delegate to call back when the filter is in place and a message arrives.
/// </summary>
FilterMessage FilterMessageCallback { get; set; }
/// <summary>
/// The handle to the window that is performing the scanning.
/// </summary>
IntPtr WindowHandle { get; }
}
public delegate IntPtr FilterMessage(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled);
}
</code></pre>
<p>I admit to being a delegate newbie, and I'm at a loss here. How can I duplicate this functionality in VS 2005?</p>
<p>Thanks for the time.</p>
http://stackoverflow.com/questions/1832592/c-case-insensitive-comparision0C# Case insensitive comparisionthreadpool2009-12-02T12:23:06Z2009-12-02T12:29:11Z
<p>How to implement case insensitive comparison?</p>
<pre><code>List<Person> persons = new List<Person>();
persons.Add(new Person("P005", "Janson"));
persons.Add(new Person("P002", "Arnold"));
persons.Add(new Person("P007", "Kazhal"));
persons.Sort((p1, p2) => p1.Name.CompareTo(p2.Name));
</code></pre>
http://stackoverflow.com/questions/1818654/array-of-function-pointers-in-c1Array of function pointers in C#Manjukarunakar2009-11-30T09:05:29Z2009-12-01T08:29:22Z
<p>Hello
There is a set of methods like:</p>
<pre><code> Foo(int, float, params objects[])
Goo(int, params objects[])
Too()
</code></pre>
<p>each taking different number of & type of parameters (so are return values).</p>
<p>I read an integer (an index) from a database. The integer corresponds to one of the above mehtod (1 for Foo, 2 for Goo and 3 for Too).</p>
<p>How do I store above methods (as delegates) in a collection so that I can call appropriate method by indexing into the collection using the integer read from db as index.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/766475/anonymous-delegate-implementation-in-objective-c1Anonymous delegate implementation in Objective-C?rustyshelf2009-04-20T00:18:29Z2009-12-01T00:03:14Z
<p>Is it possible to declare anonymous implementations of things like Delegates in Objective-C. I think I have the terminology right, but here's a java example:</p>
<pre><code>myClass.addListener(new FancyInterfaceListener({
void onListenerInterestingAction(Action a){
....interesting stuff here
}
});
</code></pre>
<p>So for example to handle an UIActionSheet call I have to declare another method in the same class, which seems a bit silly if I want to pass it data, because I'd have to store that data as a global variable. Here's an example of deleting something with a confirmation dialog asking you if your sure:</p>
<pre><code>-(void)deleteItem:(int)indexToDelete{
UIActionSheet *confirm = [[UIActionSheet alloc] initWithTitle:@"Delete Item?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete" otherButtonTitles:nil];
[confirm showInView:self.view];
[confirm release];
}
</code></pre>
<p>and the UIActionSheetDelegate in the same class:</p>
<pre><code>- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex == 0){
[[Settings sharedSettings] removeItemAtIndex:/*need index variable here*/];
[drinksTable reloadData];
}
}
</code></pre>
<p>What I want to be able to do is declare it inline, just like I did in the java example at the top. Is this possible?</p>
http://stackoverflow.com/questions/1821626/c-func-delegate1C# Func delegatethreadpool2009-11-30T18:44:13Z2009-11-30T18:49:54Z
<p>I am adding range of integers (101,105) using Func<> delegate.I suppose to get 101,102,..105 as output while executing the following.But I am getting 204,204,.....
What went wrong?</p>
<pre><code>class MainClass
{
static List<Func<int>> somevalues = new List<Func<int>>();
static void Main()
{
foreach (int r in Enumerable.Range(100, 105))
{
somevalues.Add(() => r);
}
ProcessList(somevalues);
Console.ReadKey(true);
}
static void ProcessList(List<Func<int>> someValues)
{
foreach (Func<int> function in someValues)
{
Console.WriteLine(function());
}
}
}
</code></pre>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda49Wrapping StopWatch timing with a delegate or lambda?Jeff Atwood2008-10-24T08:39:46Z2009-11-30T16:44:20Z
<p>I'm writing code like this, doing a little quick and dirty timing:</p>
<pre><code>var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);
</code></pre>
<p>Surely there's a way to call this bit of timing code as a fancy-schmancy .NET 3.0 lambda rather than (God forbid) cutting and pasting it a few times and replacing the <strong><code>DoStuff(s)</code></strong> with <strong><code>DoSomethingElse(s)</code></strong>?</p>
<p>I know it can be done as a <code>Delegate</code> but I'm wondering about the lambda way.</p>
http://stackoverflow.com/questions/1814931/memory-leak-on-begininvoke1Memory Leak on BeginInvokethreadpool2009-11-29T07:43:21Z2009-11-29T08:22:02Z
<p>1) I heard that when we won't call EndInvoke() it may lead to memory leak? can you demonstrate it how could this lead to memory leak?</p>
<p>2) When i suppose to call EndInvoke() shall i use the code like following ?</p>
<pre><code>namespace BlockMechanism
{
public delegate int MyDelegate(List<int> someInts);
class MainClass
{
static void Main()
{
List<int> someInts = new List<int> { 1, 2, 3, 4, 5, 6, 7 };
MyDelegate test = FinalResult;
IAsyncResult res=test.BeginInvoke(someInts, null, test);
Console.WriteLine(test.EndInvoke(res));
Console.ReadKey(true);
}
public static int FinalResult(List<int> Mylist)
{
return Mylist.Sum();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1803734/c-3-0-application-of-monitor-suggestions1C# 3.0 - Application of Monitor -Suggestionsthreadpool2009-11-26T13:41:42Z2009-11-26T15:22:25Z
<p>In order to understand the Monitor I have implemented the following code.But I am not sure whether the code is Thread Safe.</p>
<pre><code>namespace MonitorExample
{
public delegate void WaterLevelInformer(object sender,WaterLevelArgs e);
class WaterLevelListener
{
//listener will print information
// when WaterTank is reaching its empty level or full
public void ShowResult(object sender, WaterLevelArgs e)
{
Console.WriteLine("Water Level is :{0}", e.Level);
}
}
class WaterTank
{
//starting level is empty
static int level=0;
//capacity of the WaterTank is 2000 liters
const int capacity = 2000;
private WaterLevelListener lst = new WaterLevelListener();
public event WaterLevelInformer levelHandler;
public WaterTank(WaterLevelListener lstn)
{
this.lst = lstn;
this.levelHandler +=new WaterLevelInformer(lst.ShowResult);
}
public void FillWater()
{
lock (this)
{
if (level >= capacity)
{
Monitor.Wait(this);
}
Console.WriteLine("....WaterTank is gettig filled...");
for (int i = 100; i <= 2000; i+=100)
{
Console.WriteLine("Current Water Level {0}", i);
level = i;
Thread.Sleep(1000);
if (i == 1700)
{
WaterLevelInformation(level);
Thread.Sleep(1000);
}
}
Monitor.Pulse(this);
}
}
public void ConsumeWater()
{
lock (this)
{
if (level<=0)
{
Monitor.Wait(this);
}
Console.WriteLine("...Water is being consumed....");
for (int i =2000; i >= 0; i -= 100)
{
Console.WriteLine("Current Water Level {0}", i);
Thread.Sleep(1000);
level = i;
if (i == 100)
{
WaterLevelInformation(i);
Thread.Sleep(1000);
}
}
Monitor.Pulse(this);
}
}
//WaterLevelInformation is used to raise the event
// When WaterTank reaching its empty level
//or WaterTank is full
public void WaterLevelInformation(int i)
{
if (levelHandler != null)
{
WaterLevelArgs waterArgs=new WaterLevelArgs(i);
levelHandler(this,waterArgs);
}
}
}
// WaterLevelArgs class stores the level of
// the water
public class WaterLevelArgs : EventArgs
{
public int Level
{
get;
set;
}
public WaterLevelArgs(int level)
{
Level = level;
}
}
class WaterLevelSimulator
{
static void Main()
{
WaterLevelListener lst = new WaterLevelListener();
WaterTank tnk = new WaterTank(lst);
Thread thd1 = new Thread(new ThreadStart(tnk.ConsumeWater));
Thread thd2 = new Thread(new ThreadStart(tnk.FillWater));
thd1.Start();
thd2.Start();
Console.ReadKey();
}
}
}
</code></pre>
<p>Questions :</p>
<p>1)Is the above code is thread safe ?</p>
<p>2)As C# 2.0 and 3.0 introduced Action<>,Predicate<>,lambdas how can i improve my code?</p>
<p>3) What is the best pattern can i follow in order to use publisher ,Observer pattern,I mean
should i need to design separate class for
(i) custom EventArgs
(ii) Listeners
(iii) publishers
(iv) linker -(linkiing listeners,publishers,custom EventArgs) ?</p>
http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter0Generic method with Action<T> parameterMatt Hornsby2009-11-24T18:48:13Z2009-11-25T21:43:44Z
<p>So, I'm sure this has been answered somewhere out there before, but I couldn't find it anywhere. Hoping some generics guru can help.</p>
<pre><code> public interface IAnimal{}
public class Orangutan:IAnimal{}
public void ValidateUsing<T>(Action<T> action) where T : IAnimal
{
Orangutan orangutan = new Orangutan();
action(orangutan); //Compile error 1
//This doesn't work either:
IAnimal animal = new Orangutan();
action(animal); //Compile error 2
}
</code></pre>
<ol>
<li>Argument type 'Orangutan' is not assignable to parameter type 'T'</li>
<li>Argument type 'IAnimal' is not assignable to parameter type 'T'</li>
</ol>
<p><strong>Edit: Based on Yuriy and other's suggestions</strong>, I could do some casting such as:</p>
<pre><code> public void ValidateUsing<T>(Action<T> action) where T : IAnimal
{
Orangutan orangutan = new Orangutan();
action((T)(IAnimal)orangutan);
//This doesn't work either:
IAnimal animal = new Orangutan();
action((T)animal);
}
</code></pre>
<p>The thing I wanted to do was call the ValidateUsing method like this:</p>
<pre><code>ValidateUsing(Foo);
</code></pre>
<p>Unfortunately, if foo looks like this:</p>
<pre><code> private void Foo(Orangutan obj)
{
//Do something
}
</code></pre>
<p>I have to explicitly specify the type when I call ValidateUsing</p>
<pre><code>ValidateUsing<Orangutan>(Foo);
</code></pre>
http://stackoverflow.com/questions/1795530/combining-flipsideview-and-navigationview0combining flipsideview and navigationview pramuk2009-11-25T08:53:47Z2009-11-25T09:18:24Z
<p>when i am trying to combine flipsideview and navigation view i am getting following error
"request for member 'delegate' is something not in a structure or union" on the line controller.delegate = self; </p>
http://stackoverflow.com/questions/1792815/delegates-cant-get-my-head-around-them1Delegates, can't get my head around themmac_552009-11-24T20:45:37Z2009-11-24T22:56:35Z
<p>Hey, I'm looking for useful resources about Delegates. I understand that the delegate sits in the background and receives messages when certain things happen - e.g. a table cell is selected, or data from a connection over the web is retrieved. </p>
<p>What I'd like to know in particular is how to use delegates with multiple objects. As far as I know, specifying the same delegate for an object (e.g. table cell) would cause the same events to be called for both the cells at the same time. Is there anything equivalent to instantiating a delegate for a particular object?</p>
<p>Thanks in advance!</p>