Tagged Questions
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 ...
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, ...
0
votes
2answers
43 views
is it possible/correct for a class (not an instance) to act as a delegate?
I'm building the iOS app that is to act as a client for a REST server. So far I've been handling my all my requests in a very simple manner. Whenever I needed to make a call, I'd do something like:
...
0
votes
2answers
23 views
Objective-C: Where to initalize a delegate
I don´t fully understand how to use the Delegation pattern in obj-C. Basically I have a class: DigGameControlLayer.h and in it´s header I define a protocol with one required method that all users of ...
0
votes
0answers
33 views
declaring more than one delegate in a given class
I'm totally confused and in need for urgent help
I've declared two protocols
@protocol DeletedDelegate <NSObject>
- (void) deletedObj: (id) p_objDeleted;
@end
@protocol BrowseDelegate ...
0
votes
1answer
23 views
Joystick can't hardly communicate UILabel (strong, retain, weak, etc…)
I'm using CPJoystick which can be found here. https://github.com/Wense/CPJoystick
I'm using Xcode 4.6 and the breakpoint stops over there.
@property (nonatomic, weak, readwrite) ...
0
votes
1answer
36 views
Custom delegate/protocol didnt work like it should
I've been writing an app that has custom protocol to send the data from the child view to parent view the classes is
MainViewController
AddViewController (child to mainviewcontroller)
...
0
votes
1answer
93 views
delegate method is not being called when using back button [closed]
SOLVED MOSTLY DUE TO @rdelmar...THANK YOU!!!
So the main idea is when I press the back button in one view I want to pass an array to the view that I'm going to (i.e. the presenting view ...
-1
votes
2answers
62 views
Working with protocols - how to send a message back to the ViewController? [closed]
I subclassed UIImageView to add additional methods. I place this object on my viewController and I have a touch gesture recogniser up and running for that object. I have a few of those. My intention ...
1
vote
1answer
32 views
calling to a protocol method in a navigation stack
I declared a protocol method in order to be called by its delegate. This is the relevant code:
The view where the protocol is delared:
CategoryViewController.h
@class CategoryViewController;
...
1
vote
1answer
43 views
How do I designate a delegate for a class (not an instance) considering I can't use properties?
I've defined a protocol for my custom class, and now I want to give it a delegate. The class will not be instantiated, only used for its class methods. The delegate class, however, has been ...
0
votes
2answers
47 views
View Delegate Not Being Called
I'm building a graphing app, and I have a view and a view controller, which acts as a delegate for the view (to retrieve information). While I haven't started the actual drawing yet, I am currently ...
1
vote
1answer
113 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
2answers
134 views
Refreshing data in a UIViewController after dismissing its presented modal view controller via delegate
I have the delegate working as the data is being passed from the modal to the presenting view controller. But the presenting view controller isn't showing the data it receives from the modal. I ...
0
votes
1answer
32 views
how do i send an object in a protocol delegate method to get a notification and an object to manipulate [closed]
@protocol VideoDelegate <NSObject>
@optional
-(void)videoPlayBackDidFinish:(NSObject*)currencyInfo;
-(void)videoPlayBackDidStart;
i want to send a json object with the videoPlayBackDidFinish ...
2
votes
2answers
64 views
id type instance variable sending messages to instance methods
my first question on stackoverflow so please be gentle. I've tried searching for answers but I really need help with this.
The issue is with learning about delegates from Neal Goldstein's Objective-C ...
2
votes
3answers
211 views
Accesing delegate static method in Objective-c issue
I have a weird problem in objective-c. Here is the code:
STViewController.h
#import <UIKit/UIKit.h>
@interface STViewController : UIViewController <UIAlertViewDelegate>
...
0
votes
0answers
40 views
Using delegates to pass information from a picker on a popver view
This part of my app is supposed to work the following way. When the user presses a button, a popover with a picker shows up. The user then makes the selection in the picker and when the picker is ...
2
votes
1answer
37 views
Is passing a controller in a construtor always a bad practice?
I occasionally instantiates a class from my view controller by passing in the view controller instance itself so that these objects that I create can invoke methods of the controller to update the ...
0
votes
0answers
49 views
protocol and delegate between view1 and view 3
I know how to use protocol and delegate between 2 view controllers like view 1 and view 2, but I need to use protocol and delegate between my first view controller, and my third view controller...
...
0
votes
2answers
41 views
Protocol with one delegate and many senders?
I have the following situation of my app. Four child VCs need to have a data source delegate, which their root VC (they all share one root VC) must implement.
My question is - do I declare a ...
0
votes
0answers
50 views
It works…but I sense it could be done a lot better (delegation)
I've been trying to get my head around this for ages, which frustrates me all the more because the program is doing what I want it to. However, I sense I don't fully understand it and therefore feel ...
0
votes
2answers
75 views
Delegate/Protocol doesn't work: pass Array from TableViewController to parent ViewController
I have a parent ViewController (SearchViewController) which segues to a TableViewController (FilterTableViewController) where the User can select persons in the TableView. The selections are stored in ...
5
votes
2answers
166 views
init with delegate protocol
Whenever I create an init that has a delegate conforming to a protocol I write the init as this:
- (id)initWithDelegate:(id<ProtocolToConform>)delegate;
This way I will have a warning if the ...
0
votes
1answer
43 views
Getting the value of a delegate upon clicking back?
I have two class files. ViewController and ChooseServerView. A user clicks a cell within the ViewController class which pushes to the ChooseServerView. When a user makes a selection in ...
0
votes
1answer
69 views
Adding UINavigationController functionality to a container controller with a defined Protocol
I've designed a custom container view controller that mimics the functionality of something like path or facebook (the sliding deck effect). In order to communicate with those controllers, I've ...
0
votes
0answers
52 views
Objective C - 2 level hierarchy protocol
I am trying to define protocols during making my iPhone app.
There are 3 view controllers.
mainviewcontroller.h
#import "ViewControllerA.h"
@interface MainViewController:UIViewController ...
2
votes
1answer
71 views
@protocol with integers
I am trying to make a protocol for a detail view for a tableView. The detail view has a question and then an answer. If I get the answer correct, it will set an integer to increase by 1 in a protocol ...
0
votes
2answers
188 views
Why doesn't webFrameLoadDelegate protocol work?
I am just starting out at Xcode, and I'm trying to make a OS X web browser.
I want to figure out when my webview is loading and when it isn't. I've already looked at a lot of pages both from here ...
0
votes
0answers
88 views
Method in protocol don't work properly
I don't understand why this code work properly for example in
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
UITabBarItem *item1 = [self.tabBarController.tabBar.items ...
1
vote
1answer
70 views
Pass boolean trough back button of navigationBar
I have two viewController, the viewControllerB, when returning to viewControllerA through the back button of navigationBar, I want you pass a Boolean value. I used a protocol but does not work.
In ...
0
votes
1answer
217 views
Cannot find protocol declaration for ' '
I know this question has been asked a lot, but it doesn't help me...
I have made a lot of delegate protocol in my projects, but this happened a lot...
I got an error cannot find protocol ...
1
vote
0answers
31 views
Create a protocol to retrive data from a UINavigationController to a UIViewController
i have a parent UIViewController from wich i present a UITableViewController with an embed in UINavigationController from wich i have to select some rows ( in my case rows with people name ), add them ...
1
vote
2answers
178 views
ios custom delegate setup
I am trying to make a custom protocol that i hope somebody might help with.
I have a mainViewController (mainVC) that has a label. That label needs to be updated with a string when i press a button ...
2
votes
2answers
117 views
Change label text color using delegate
I have two view controller, ParentViewController have label that updated using SecondViewController.
Now I want to change ParentViewController's label text color from ChildViewController, for that i ...
0
votes
1answer
426 views
ios - respondsToSelector always false with custom delegate
I was playing around with MKMap and some custom delegate it's not working here and i really don't know why :/
Here's my code :
LocationViewController.h
#import <UIKit/UIKit.h>
#import ...
1
vote
0answers
40 views
Protocol Delegate Implementation not working
I am implementing a Protocol of my UIViewController Class. I need to perform methods of this Protocol in another class. But its not working.
Below is the code. Please help me out.
///This is my ...
1
vote
2answers
89 views
String become nil after viewDidLoad with protocol and delegate
I have a protocol and delegate and I have it send a string then change the Tab on a UItabbar, My protocol and delegate works just find and it sets a string in the viewcontroller but as soon as the ...
-2
votes
1answer
70 views
iOS inheriting a class with a protocol [closed]
So I have a class called "DrawOnImageViewController", which does something pretty obvious. In it's header file, I also have a protocol "DrawOnImageDelegate" defined with a single method: ...
1
vote
3answers
255 views
Custom Protocol not getting called in Xcode, returning 0
I've been wrestling with this for a few days - I have a custom protocol that is supposed to get the data from one of my models (via it's controller) to a view that graphs it.
Here's how I am doing ...
0
votes
4answers
482 views
Using delegate between two viewcontrollers in iphone
I have two view controllers: view controller and viewcontroller2nd. I have UILabel in one of them and would like to change it when the button( named Go) in the viewcontroller2nd is clicked. I am using ...
0
votes
1answer
123 views
Getting the delegate to work between two view controllers
I am a newbie to iPhone development and have some basic questions to ask about protocols and delegates. I have two view controllers: view controller and viewcontroller2nd. I have UITextField in one of ...
1
vote
1answer
255 views
How to code the delegate pattern in objective C
I'm trying to pass JSON to VenueIDController by implementing delegate/protocols. however it doesn't seem to work. Please let me know what I'm missing.
I even put in an log in the fetch method to see ...
0
votes
1answer
178 views
Objective C Protocol Delegate test
I'm studing protocol and delegates using an Example! When I try to re create this example I notice that this condition is not respected:
if([delegate respondsToSelector:@selector(amountEntered:)]) ...
0
votes
0answers
126 views
Protocol on Objective-C iOS
I have some problem with my app and a protocol. I can't post image (...) but my Storyboard contains two controller. First is Main Menu controller with a UIButton. When the button is pressed by the ...
0
votes
2answers
295 views
Delegate method not being called by viewController
So here's what's going on (other than me being a noob).
I have two view controllers, AddAPlaceViewController and showCategoriesViewController.
I have a table cell in AddAPlaceVC which you tap and ...
0
votes
1answer
55 views
delegate not being called when not directly navigated
I have created three view controllers, namely FirstViewController, SecondViewController & ThirdViewController. The FirstViewController pushes SecondViewController, and similarly ...
0
votes
1answer
127 views
protocol method not being entered when called from delegate
I am having some issues with my protocol & delegate that I have set up in my app.
I am trying to return some data from a class back to a viewcontroller, however when I try to send it back nothing ...
0
votes
1answer
217 views
Objective-C delegate function not working correctly
I have an app that has three views. All three views have an Ad Banner at the bottom of the screen. The first view creates an audio streamer which is paused when the Ad Banner on this view is clicked. ...



