Tagged Questions
0
votes
3answers
51 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
27 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 ...
2
votes
1answer
206 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 ...
6
votes
6answers
155 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 ...
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
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 ...
0
votes
2answers
83 views
Delegation to SecondViewController inside a NavigationController presented Modally
I'm really not sure how to express this question in the fewest and clearest words possible. But I'll try my best.
I have a class ShoppingCartVC and I want to add products to it. So I modally present ...
1
vote
1answer
359 views
multiple .h and .m files, multiple interface definition
sorry, I'm quite new to Xcode, but I'm building a project and am very stuck. I am trying to combine two previous projects, which worked fine, into one project, and am having trouble.
Initially the .h ...
0
votes
1answer
52 views
Is it usually a bad sign that I am relying on self.parentViewController and/or self.presentingViewController in my design
I have a SubSelectVC that handles sub-selection choice that is presented modally from a SearchVC. The SubSelectVC has a -(void)didSelectRowAtIndexPath that performs these options, roughly:
if ...
0
votes
2answers
259 views
Refactoring my code for asynchronous NSURLConnection
There are problems with using synchronous requests. The problem is that I am not really sure how to refactor the code below to use an asynchronous request to accomplish the following two tasks:
Use ...
0
votes
1answer
82 views
How should this be implemented? Delegation
I have many views that I want to communicate with one other view. We'll call that one other view "main view". What I want to do is have the "many other views" be able to send a method to "main view" ...
1
vote
1answer
2k views
iOS5 dynamically assign an action to an accessory button within UITableViewCell
I have one table view within the app that I hope multiple parts of the app would be able to use to post updates to the table view with possible actions that the user can take. One of the ways that I ...
0
votes
0answers
77 views
iPhone delegation bug
I've got 2 views. The firstView and the secondView. The firstView needs the favourites array from the second view, so I try to call the "getFavourites" method defined in the protocol. This returns ...
0
votes
2answers
134 views
Help me understand leaks on this code: [duplicate]
Possible Duplicate:
How to release an object declared into a method and passed to another method?
Can you help me fix leaks in this code:
- ...
-1
votes
3answers
132 views
How to release an object declared into a method and passed to another method?
Any idea on how to release the UIImage object picture in this case:
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
UIImage *payload = [[UIImage alloc] ...
0
votes
2answers
240 views
How do I assign a delegate to multiple classes
I have a custom delegate, and I want 2 classes to respond to it's events. How can I assign it to both classes.
ie:
viewController.delegate = firstClass && self;
0
votes
3answers
660 views
iOS: too many initWithDelegate messages and compiler warnings
One of my view controllers relies on several classes that each have an initWithDelegate: method. The view controller is the delegate in all cases. I get compiler warnings on all calls to
...
1
vote
3answers
507 views
Delegation over category
Can any one differentiate when do we use Delegation over category and vice versa. I am clear over this.
Thanks
0
votes
3answers
815 views
How do you use custom UITableViewCell's effectively?
I am currently making a custom UITableView cell as shown below.
The custom UITableViewCell is in its own nib file that I am calling from another ViewController. (like so)
// ...
0
votes
1answer
512 views
delegate not being called
I have subclass a UITableViewCell as follows:
@class MyCell;
@protocol MyCellDelegate
- (void) viewController:(MyCell*)viewCon userId:(NSNumber*)uid andType:(NSString*)type;
@end
@interface ...
0
votes
4answers
500 views
Question about delegation in Objective-C, CLLocationManager
I'm getting a bit confused how delegation works. I believe the idea is to have another class do the work for you and call you back. So if you did something like this:
- (void)viewDidLoad {
...
3
votes
2answers
840 views
iPhone Google Analytics SDK delegate and multiple accounts problem
I am implementing google Analytics SDK in my iPhone application. I had it working with following code:
AppDelegate .m :
[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-xxxxxxx-1"
...
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 ...
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 ...
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 ...
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
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 ...
0
votes
1answer
330 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 ...
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
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
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 ...
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>
...
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
253 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
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 ...
0
votes
2answers
1k views
Calling UITableViews delegate methods directly
I was looking for a way to call the edit method directly.
- (void)tableView:(UITableView *)theTableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath ...
0
votes
1answer
181 views
How is a delegate object called?
my protocol:
@protocol ElectricalSystemEngineDelegate
-(void)didRequestMainMenu:(id)sender;
@end
I designed this protocol in order to handle dismissal of a modal View Controller inside my rootView ...
12
votes
3answers
3k views
Objective-c asynchronous communication: target/action or delegation pattern?
I'm dealing with some asynchronous communication situations (Event-driven XML parsing, NSURLConnection response processing, etc.). I'll try to briefly explain my problem:
In my current scenario, ...
0
votes
1answer
118 views
Delegation in a NSThreaded Design? (iPhone)
Im using a large amount of very small web services in my app and I have been down a couple of roads that does not scale or work as desired.
The Design approach Im thinking about:
The task for the ...
0
votes
5answers
751 views
Delegation, some example of code? How object delegate to other
I would like to gain a better understanding about the delegation. Can somebody please paste a good code sample of delegation and explain how it works?
1
vote
3answers
838 views
How to implement delegation the right way?
I'm trying to implement delegation for a class which should call it's delegate (if any), when special things happen.
From Wikipedia I have this code example:
@implementation TCScrollView
...