Tagged Questions
0
votes
1answer
88 views
Custom delegation to pass data between tab bar view in iOS not working
I am facing a problem related to delegation.I have 2 tabView. In first tabview i have 2 textfield and a button(to trigger the delegate method) and in the second tabview i have 2 label to display the ...
0
votes
1answer
30 views
Am I creating a retain cycle between UIViewController and a custom object?
In a project using ARC, I have a UIViewController that is handling too many concerns, so I'm looking to split things up. One obvious thing for me to take out is a method that formats and sends an ...
-1
votes
2answers
71 views
Cannot find protocol declaration for “XXXX”
I am stuck with this problem. I have the following .h file:
#import <UIKit/UIKit.h>
@protocol MapSettingsViewDelegate
- (void)settingsDidUpdate:(BOOL)scheme;
@end
@interface ...
2
votes
5answers
111 views
how to pass data to the parent class in ios?
I am a beginner in objective-C. So please forgive if my question is silly.
In my root view controller A, I added a subview B.
In b there will be another subview C. C contains another subview D.
How ...
0
votes
2answers
77 views
do you need to import .h files when using delegates?
-(IBAction)ok
{
//send message to the delegate with the new settings
[self.delegate setHeight:_height Width:_width Mines:_mines];
[self.delegate dismissViewControllerAnimated:YES ...
0
votes
2answers
123 views
How can I call a UIViewController method from an UIView subclass
I am developing and iOS app for iPad. I have an UIView subclass and I'd like to call a method of the ViewController from that subclass. I've tried to code a delegate but it doesn't work. Is that a ...
-5
votes
1answer
24 views
Delegation is not working after once when i add to my viewcontroller to tabbarview controller [closed]
Hi everyone my scenario is like this i am having tabbar view controller with some viewcontrollers (viewcontroller1, viewcontroller2, viewcontroller3 etc..) added into it. now my tab bar is root view ...
1
vote
1answer
141 views
how to delegate with an IBAction between two different UIViewController
I'm just trying to understand how delegate works and I'm in troubles.
I have two classes (both UIViewController) connected into the storyboard, the first one (ViewController.h/m) hold a TableView ...
0
votes
1answer
42 views
Eliminate repetitive code for Delegation in Objective C
One of 35 header files in project (Handed over to me by some other developer; All of them contains same delegates declaration)
@interface ActivityDetailsCN : UIViewController <NSXMLParserDelegate, ...
0
votes
2answers
84 views
Trouble coordinating view controllers
I have the following view controllers built in my app. The presenting controller is "PatientSelectViewController" (let's call it controller A) and it allows to either manually enter the patient ID in ...
2
votes
1answer
31 views
One delegation lives across multiple files?
I have started coding in Objective-C for several days and I have a question about table view.
This is my declaration in myViewController.h file
@interface MainViewController : NSViewController < ...
0
votes
2answers
44 views
Popping ViewControllers when using delegation
I'm a bit weak in my Objective C I'll admit, my ultimate goal is pass data from ViewController3 back to ViewController1. Actually, that part is already done and successful. However when calling ...
1
vote
1answer
136 views
Refreshing a view from a popover
I am using Xcode 4.5 and targeting iOS 5 and above.
I have a popover that allows a user to change the background of the underlying view.
When tapping on the "button", it requires that I tap twice to ...
0
votes
0answers
348 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 ...
0
votes
1answer
66 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
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
320 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 ...
0
votes
1answer
154 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
90 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
299 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
79 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 ...
0
votes
2answers
115 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
50 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
2answers
99 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 ...
2
votes
5answers
191 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 ...
0
votes
2answers
84 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 ...
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
1k views
Delegate after subclassing?
I'm sorry, i was not able to formulate a short question for the title..
In case i subclass a class with a delegate protocol and property, does my delegate still need to implement the delegate ...
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
378 views
Simple Clock application: use delegation or callback every second?
I'm having some fun with objective c. As a simple program I wanted to write a clock application.
Basically, a UITextField needs to show the current time and update every second.
My initial thought ...
3
votes
3answers
147 views
What's the way to communicate a set of Core Data objects stored in the background to the main thread?
Part of my iOS project polls a server for sets of objects, then converts and saves them to Core Data, to then update the UI with the results. The server tasks happens in a collection of NSOperation ...
3
votes
3answers
105 views
Is it bad programming design to delegate information from Class A to Class B to Class C instead of directly from Class A to C?
I'm planning on making an app that contains a piano keyboard. There will be a custom class that represents an individual key, and the keys will be the subviews of another custom class, the piano ...
3
votes
3answers
187 views
Data provider calling a delegate: specifics or generic?
I have a XML parser which will parse 17 different XML documents (I'm simplifying this).
When the parser has finished its job, it calls the object that did the request.
First way
A single method that ...
0
votes
2answers
231 views
UINavigationControllers: How to pass value to higher (parent?) controller in stack?
I have SendingController which push to nav stack SendingDeatilsController (which one has a TableView). User should should pick in TableView one row (it checked by Checkmark) and I would like to pass ...
1
vote
1answer
125 views
Understanding custom Delegate
So I have an app, and in the app there is a tableView, I have a uinavigationbarbutton that presents a modal viewController. When the user hits a go button in the modal interface, I want it dismiss ...
1
vote
3answers
521 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
1answer
544 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 ...
11
votes
3answers
1k views
How to properly deal with a deallocated delegate of a queued nsoperation
In my current project, several view controllers (like vc) spawn NSOperation objects (like operation) that are executed on a static NSOperationQueue. While the operation is waiting or running, it will ...
0
votes
1answer
1k views
Cocos2d execute a CCLayer function in one of it's children
I'm building an iPad game for a study project and I'm stuck trying to have one of my objects (which inherits from CCSprite) to call a function on the CCLayer.
The situation:
I have an instance of ...
-1
votes
2answers
224 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
513 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. ...
1
vote
1answer
448 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 ...
5
votes
1answer
282 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 ...
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
472 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 ...
1
vote
4answers
502 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
608 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 ...
0
votes
3answers
255 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 ...

