The viewcontroller tag has no wiki summary.
0
votes
0answers
33 views
How do I place images around a div instead of inside the div?
In my cshtml file I would like to place div's images around it instated of inside it. Is this possible to do it in an easy way ?
0
votes
1answer
22 views
ViewController from StoryBoard make ViewDidLoad called twice
I would like to make (from my StoryBoard) a ViewController that I will be able to push from anywhere by code (this ViewController will be used a lot of time, so I don't wan't to add tons of segues in ...
0
votes
1answer
11 views
iOS: Data Driven Drilldown Reference App
I'm looking to create a reference app for iOS that drills-down through categories to display a Detail viewcontroller containing the topic information.
I've been studying Xcode for a while but can't ...
0
votes
4answers
36 views
Access button from another ViewController in iOS?
I have two ViewControllers. One has a button, and the other ViewController has a segmented control to turn the button on or off. My question is: how can I access the button from ViewController 1 to be ...
0
votes
0answers
5 views
Receiving this error. No visible @interface for 'UIViewController' declares the selector 'presentViewController'
The problem is at the if ([[topViewController presentViewController] line:
(void)sessionStateChanged:(FBSession *)session
state:(FBSessionState) state
error:(NSError ...
0
votes
2answers
34 views
Popup Orientation Change
In this application starting onwards Portrait mode.
.
code snippet
NSInteger heightOne;
NSInteger heightTwo;
NSInteger imgV;
CGRect Bounds = [[UIScreen mainScreen] bounds];
if ...
1
vote
0answers
31 views
Can't send the target ID from a view to the controller “ondrop” event
I am using c# MVC 4 , i am trying to drop an text into an img class and send the img ID to the controller :
function drag(target, e) {
e.dataTransfer.setData('Text', target.id);
}
...
0
votes
3answers
47 views
How to pass object between several views in storyboard, iOS Dev
I have searched for this but the answer is too simple to satisfy me :(
I want to pass a NSManagedObjectContext from TabBarController to almost every view controllers in my app. In detail, my ...
0
votes
3answers
47 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
21 views
3D object in viewcontroller
Ok so heres what I want to do, I have an object I made in Blender and I want to put it in a viewcontroller and rotate it. Thats it. Shouldn't this be as easy as it is to put a .png image into a view ...
-1
votes
5answers
55 views
viewController and pushViewcontroller not working?
I am trying pushViewController in iOS.But the execution result is following
When i hit the button it will make a transition from view A to View B.
Here is my code for view A
#import ...
0
votes
1answer
24 views
How can i Load my main ViewController's view, from another viewcontroller's icon action?
I have a root ViewController class, and call the OnlineViewController's View like this:
- (void)eventTap:(UIGestureRecognizer *)gestureRecognizer {
self.evc = [[EventViewController alloc]init];
...
0
votes
1answer
29 views
Determine state of viewcontroller in storyboard
I'd like to know how to manage this:
I have 4 viewcontrollers in a storyboard, each one has the same class but i would like to know how to determine when they change their state from fullscreen to ...
0
votes
1answer
25 views
how can form a user in put with text field and without a button
i want to form a textfield in my view controller. After user make his input to this text field and press return or dismiss keyboard with touching to the screen, an action must be done. how can i ...
0
votes
3answers
37 views
iOS NSDictionary pass through function
I have my view controller named SecondViewController and when user selects which article wants to read, I want to navigate to ThirdViewController and pass NSDictionary with article data.
- (void) ...
-1
votes
2answers
29 views
iOS and xcode: how to create a modal segue to a special view only the first time the app is used
I want to make a "terms and conditions" screen that pops up the very first time that app is opened. On this view I would add a button that says "agree," and upon clicking it the code would execute:
...
0
votes
1answer
44 views
How do I forward data to a protocol before dismissing a view manually?
I want to dismiss a view controller manually using dismissViewController:animated. The problem is I want to save a value before I dismiss the view, otherwise it becomes null and I get no data in my ...
0
votes
1answer
48 views
Get data from AppDelegate to ViewController in iOS
i have ios project i xcode and I need to get device token from Appdelegate to view controller, here is code of App delegate:
-(void)application:(UIApplication *)application ...
0
votes
0answers
19 views
hoıw can i refresh tab bar controller for implementing new conditions?
i have a authentication screen when occurs there is no current user. i want to make a log out button from setting page which is another view controller of tab bar. so i made a button and logout code ...
0
votes
1answer
23 views
nib class is different in different target?
I'm trying to write a unit test that setup the view controller, I've tried two ways to get the view init, the first way is to use the bundle to load nib content and filter out the one I'm looking ...
0
votes
1answer
31 views
Trouble getting NSUserDefaults storage method to appropriately update text label iOS
I'm trying to use the NSUserDefaults class to hold a bunch of text label info. Specifically, I have a view with a button and a label. When the button is clicked, it takes the user to another view ...
0
votes
0answers
36 views
iOS AwesomeMenu new view on part of screen
I'll start off by saying I'm completely new to XCode, Objective-C and the Model-View-Controller paradigm.
I want to use Levey's Awesome Menu for my iOS application. ...
1
vote
1answer
38 views
remove ViewController from parent screen stays black
I'm having trouble with removing a modal view.
I want to show (after pressing a button) a my own SendMailViewController which it self shows a MFMailComposeViewController. Then and after pressing ...
0
votes
1answer
20 views
How to fix objects (text fields, labels, etc) in viewcontroller.xib (Xcode 4)
Sorry I am just learning how to program so sorry for the noob question. I began playing around with Xcode and put together my first test app with just a login and password. The problem I am having is ...
0
votes
0answers
8 views
I swipe across the screen. How can I see if a UIImageView is in the path of my swipe?
I have a UIImageView in my main ViewController.
When I swipe across my ViewController, I want to find whether my swipe goes across the UIImageView.
How do I catch that event?
1
vote
2answers
73 views
How to pass data between two ViewControllers without using segues and NaviagationController
My problem it's when instance a SecondViewController in FirstViewController for assign a value on variable ID, the problem is I can not use Segue and NaviagtioController..
Maybe a solution use a ...
0
votes
0answers
49 views
Using PKRevealController in one ViewController in Storyboard
I have storyboards that contains 8-10 ViewControllers and each view controller is presented modally.
One of the view contains Google Maps SDK for iOS. On this view I need to use the ...
0
votes
1answer
69 views
ios: how to dismiss a modal view controller and then pop a pushed view controller
I have a view controller B that is pushed onto the navigation stack by root view controller A and this view controller B needs to display an alternative view if its model is in a certain state so it ...
0
votes
1answer
54 views
Saving data in one view controller and displaying it in another
I am currently developing an app the needs to have an initial setting screen (name, date, amount of deposit, and percentage). I have created a view controller that will add and then save to core ...
0
votes
1answer
36 views
Track download progress from various ViewController
I have an app.
It has VideoListViewController that has list of videos to download.
When I click the download button, the control is transferred to DetailViewController.
DetailViewController shows ...
0
votes
1answer
116 views
Custom Mail Composer View Controller for iOS
I want to have a mail composer view in my app but with a few extra fields and stuff. Since the original view controller Apple provides, MFMailComposeViewController doesn't allow any way to customize ...
0
votes
0answers
24 views
Gesture Data from ViewController to UIView
i would like to change the stoke of an line with a pan gesture. So now i have a IBAction called handlePan with the pan gesture in my ViewController called ViewController.m
#import "ViewController.h"
...
0
votes
0answers
25 views
Using a custom PickerView in storyboard
I have some View Controllers embedded in a navigation controller using a storyboard.
In view controller 1 I have a custom PickerView that is hidden until the user selects a text field that lets the ...
1
vote
2answers
25 views
allocating view controller the right way
i am trying to archiv something really simple.
I add a property for a NSScrollView in my ViewController header file called PanelController:
@property (strong) IBOutlet NSScrollView *listurls_fld;
...
0
votes
1answer
39 views
App running slow after loading viewcontroller, then unload about 15-20 times
Using:
Xcode 4.6
Storyboards
ARC
Model segue to SecondViewController
I have an app that has the main ViewController that loads a new veiwController when the device is rotated to the right. When the ...
0
votes
1answer
27 views
Using and updating a NSMutableString in AppDelegate for two viewcontrollers
I have a NSMutableString defined in my AppDelegate.h file.
//AppDelegate.h
@interface AppDelegate : UIResponder <UIApplicationDelegate>{
@public
NSMutableString *nidForDetailDisplay;
}
...
1
vote
0answers
31 views
Pushing Data From Viewcontroller to NavigationController, which both under tabbarcontroller
I m creating an apps, that has tabbarcontroller, navigation controller and viewcontroller
storyboard is like this
Tabbarcontroller
1 viewController(ScanViewController)
2 NavigationController1 - ...
0
votes
1answer
38 views
Passing UILabel's text from one viewcontroller to another
Yes I know people have asked about this for quiet some time.
I'm looking for some help on how to pass data from one view controller to another using @properties..
Instead of posting the code here, ...
-2
votes
1answer
45 views
It is possible to have 1 class but 2+ views? [closed]
I asked myself wether it is possible to have one ViewController (.h & .m) and connect more then 1 view to it.
So I tried to connect 2 views to the ViewController.h
No I have a button and a ...
1
vote
2answers
102 views
Best way to pass data between nsobject and a viewcontroller
I have an helper class which has a function that makes an api call and get some json data and formats and returns an array. My TableViewController is trying to access that returned array. Yes, as you ...
0
votes
3answers
114 views
XCode: Single ViewController going to multiple ViewControllers
I have seen a bunch of topics where multiple ViewControllers go to one single ViewController, but not the opposite.
I am making a game where you select a game from Game_select.m and it needs to go ...
0
votes
1answer
93 views
iOS: How to add toolbar or any footer below Table View?
I've followed the CS193p introduction course to objective C. I have now a grouped Table View, and my view controller is a CoreDataTableViewController (from the CS193p class), which is basically just a ...
1
vote
2answers
77 views
NSNotificationCenter postNotificationName exec_badaccess
I have a view controller, when it's dissming with completion, I post a notfication, and in a subview which contained in another view controller, has added as a oberserve. But, when it tries to execute ...
0
votes
1answer
79 views
UIViewController viewDidAppear after dismiss?
I have an app that uses a storyboard. I am going from the "main view controller" to the others using standard segues, and I am dismissing the other viewControllers with dismissViewController. (note, ...
0
votes
1answer
66 views
How to reload another view controller's tableview data
Right now, in FirstviewController, I got a button, when i clicked it, I get the value back using delegate. Right now, I want to send this value to SecondViewcontroller and reload it's tableview data. ...
0
votes
0answers
34 views
Use calloutAccessoryControlTapped: method to load specific Viewcontroller
I have a number of viewcontrollers that each hold their own content. I want to load each viewController's content into their own popover that pops up when someone taps an annotation. Since each ...
1
vote
1answer
77 views
Avoiding loading hundreds of view controllers in a custom UIViewController container
I've written a custom UIViewController container that acts similarly to Flipboard's pages. The user can swipe/tap through "pages" that are child view controllers. I feel I've written it well but am ...
0
votes
1answer
53 views
iOS ViewController uilabel only updates on rotation in tab bar application
I am new to iOS development and trying to figure out what is happening here. I have a tab bar application with multiple ViewControllers and classes. One of my classes is called and updates the ...
0
votes
0answers
14 views
iPhone: Split View - List and Map
Does anyone know of a view controller implementation for an iPhone that has one half of the screen a map view, and the other a list view. Then when you swipe, it scrolls and has the ability to expand ...
0
votes
0answers
190 views
View Controllers in xcode 4.6.1
I'm pretty new to ios development and can't seem to figure this out... Im trying to make a connection from my view controllers (from ViewController to NatureViewController), but every time I load the ...



