Tagged Questions
0
votes
0answers
8 views
MPMovieController control bar not responding
I'm making an iPad version of an app I've already made for iPhone, which means I know this code has worked. I am using self.bounds instead of a static value, so the size to is accordig to the docs.
...
0
votes
0answers
32 views
NSJSONSerialization leaking - can't figure out why?
SO here is my method:
-(NSString *) getTemplateNamed: (NSString *) aTemplateName withManufacturerID: (NSNumber *) aManufacturerID withPriceLevel: (NSNumber *) aPriceLevel {
@try {
...
0
votes
1answer
54 views
How to dismiss the Popoverviewcontroller?
I have select the Popoverviewcontroller segue in storyboard for IPad over UIBarbutton to view controller.
When i select one time on the add button it displays the Popoverviewcontroller, I want to ...
-4
votes
2answers
67 views
What framework should I import to use the self.bounds property? [closed]
I need to use the self.bounds property but I get errors.
What framework or .h file will I have to import to get it working?
0
votes
0answers
14 views
How do I use a UIPageViewController in a UISplitViewController?
I am trying to use a UIPageViewController as the main view in a UISplitViewController, but it does not work properly with paging gestures. For instance, if I try to swipe to the next page, the next ...
0
votes
0answers
50 views
“unrecognized selector sent to instance” crash
I've got a trouble with UI_USER_INTERFACE_IDIOM() here
- (void)viewDidLoad
{
[super viewDidLoad];
self.footerCommentActivity = self.commentActivity;
self.footerNewsActivity = ...
0
votes
1answer
58 views
delegate help code not behaving as expected
Really simple question i think.
i have a main view and a popover view.
i am trying to make a custom delegate which will enable me to close the popover view at certain times. My code is posted below. ...
0
votes
1answer
43 views
Using 2 UITableView instead of UISplitView
I am developing a simple iPad application. I have an array of category objects, and each category object holds an array of item objects related to that category. I want to show the categories on the ...
-1
votes
1answer
26 views
iOS UIPopover and tableview tutorial [closed]
Im after examples of a good tutorial which shows a popover view and tableview.
What i need is when i select a cell in tableview it saves the string and closes the popover view but the string is ...
-2
votes
0answers
17 views
Popover controller won't let me save an image [closed]
So I'm am writing a program that needs to save an image through a popover view controller. It uses a UIImagePickerController and a UIPopoverController. Everything seems to work but when I try to leave ...
1
vote
2answers
25 views
How to change orientation of toolbar which is adding to window
I am developing one app which is based on tabbarcontroller.In one view Controller i want to hidden the tabbarController instead of that i want to show toolbar for that purpose i wrote the following ...
0
votes
2answers
28 views
UIWebView execCommand Cut, Copy, Paste
I can't seem to get the execCommand for cut, copy, paste to work in a UIWebView that has contentEditable set to true. I am able to select the text using selectAll command but cut, copy, and paste do ...
-1
votes
3answers
42 views
how to attach any document in email in iphone app
I am sending email from iphone app it is working fine but i want that with email i should attached a pdf file which is documents folder of the app.for testing first i attached a png from resources ...
1
vote
1answer
44 views
NSUserDefaults working on device and simulator but returning NULL on device when installed via .ipa
I am encountering very strange problem.
I am saving users email and a encrypted key with [[NSUserDefaults standardUserDefaults] synchronize] for login to my webserver with my ipad app. This method ...
0
votes
1answer
49 views
Touch Interaction in a UIScrollView
There are a few posts similar to this, but I'm having trouble adapting the other responses to my code. I am having issues with using the methods touchesBegan, touchesMoved, and touchesEnded in my ...
-3
votes
1answer
37 views
detect when subview showed up on screen
Have 2 functions, function 1 download data (photos and names) and when download is complete I call function 2 to update screen with that data (showing up buttons thumbnails with the photos and names).
...
1
vote
1answer
16 views
Switching between storyboards/view controllers
So I'm making an iPad app for the very first time and right now I have one view controller with its buttons displayed on the storyboard and everything and what I want to do is when I click on a ...
0
votes
0answers
11 views
Video playback terminates when popover is dismissed
I am trying to playback a video stored in the photos album. This is being tested on the iPad, hence the use of UIPopover. The code is as follows:
-(void) buttonPressed1:(UIButton*) button{
...
0
votes
2answers
54 views
how to connect dots and make a line and remove lines in ios? [duplicate]
how to connect dots and make a line and remove lines in ios?
How to to make flow line type of game for iOS?
this is link http://www.flowanswers.com/
This type of project have assigned to me.
...
0
votes
2answers
41 views
xcode I want to change the first xib on launch
I created an IPhone app, then I had to convert it to IPad app. Now, I added a new Objective-C Class which includes XIB, .M and .H files. and I want that new XIB file to be shown on launch.
my new ...
0
votes
2answers
26 views
drag and drop uiimage into another uiimageview
I am using following code snippt to drag and drop uiimageview
UIPanGestureRecognizer *panRecognizer = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(move:)];
[panRecognizer ...
0
votes
1answer
21 views
Xcode iPad storyboard
So I'm looking at an iPad Objective-C Xcode project's source code and I am new to this and having trouble figuring out what's going on.
So I'm looking at the file MainStoryboard_ipad.storyboard which ...
0
votes
1answer
35 views
Some help regarding UIScrollView and changing ownership of a UIView
Basically, I'm working on an app on the iPad that involves a line which the user can scroll horizontally through on the screen. It's set up so that there is a UIScrollView and a UIView on top that ...
-4
votes
3answers
64 views
Convert DateTime in iphone [closed]
I need to convert the Current date time into "04/10/2013 12:00:00 GMT+5:00" format.
I had gone through differet methods but couldn't got the exact format.
Can anyone know please help me.
0
votes
4answers
80 views
How to create custom tableview cell with three buttons having background image and tagID.I want to return tag ID when button is clicked?
I am creating an iPad Application in which I had created a custom table view which return rows according to the number of items in the API. Each row contains three button with background image and ...
0
votes
2answers
43 views
label is not visible in UIToolBar
I am attempting to set a label into a subclassed UIToolBar. I am first creating the label, then converting it to a UIBarButtonItem and setting them to the toolbar, but the toolbar just appears blank. ...
0
votes
1answer
33 views
TableView as subview of UIView not appearing when app lunches in landscape mode
I am developing an application in which i created tableview as subview with two rows which contains label and textfield to take username and password from user.
I took help from this site to create ...
0
votes
2answers
20 views
Can I make one XIB/NIB that can be shared across iPhone and iPad UIs in a Universal App?
Are XIBs usable across platforms?
EG: I'm creating a Universal app. When creating a new XIB, Xcode wants me to pick a device family.
This bit of UI will be used in both versions of the app as-is ...
-5
votes
0answers
29 views
issue when chance uiview from landscape to portrait [closed]
self.view.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
self.menuView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;
I'm ...
0
votes
7answers
93 views
iOS/Xcode - Toggle button changing position
I want a button that toggles the position of an element on click.
My current code:
-(IBAction)menuTouched{
// Push menu
UITableView * sideMenu = [[UITableView alloc] initWithFrame:CGRectMake(1060, ...
0
votes
2answers
45 views
Stopping navigation bar from scrolling with table
I have a UITableViewController which successfully lists in the table view data fetched from a CoreData entity.
I want to have a navigation bar at the top with a couple of buttons to navigate around, ...
0
votes
0answers
33 views
Custom size for Modal View loaded with Form Sheet presentation
I'm trying to load a UIViewController in iPad with Form Sheet presentation. The problem is the size of this new view, i put the size values in the IBuilder but the modal view take a fixed value.
Also ...
0
votes
4answers
52 views
Having issue with reading Plist into UITableView
I am trying to display a dictionary plist into UITableView , I have read many question and answer here but no luck ! it seems cells return null ! here is my plist :
and my codes :
...
0
votes
1answer
49 views
Putting isCancelled Property in an NSOperationQueue
So, I am using the addOperationWithBlock^{}method of the NSOperationQueue and I want to put the fine grained isCancelled property check at points in the operation code. How do I get the instance of ...
1
vote
0answers
51 views
Creating a text file - iPad [duplicate]
Is it possible to create an XML file on iPad with Objective-C ?
Let me explain, I am connected to a database that returns me an XML file and I have to write this content in an XML file created on ...
0
votes
0answers
24 views
Incorrect Master View Size in storyboard (portrait only)
I have an iPad app designed using storyboard, the MasterViewController simulated metrics are as follows:
and the view size as it appears in the size inspector is as follows:
when I NSLogged the ...
1
vote
1answer
59 views
How to manage a very large number of IBOutlets in an iOS app
I am trying to write an iPad app with the basic purpose of form filling. I have 5 independent forms that I have designed in Interface Builder with each form having more than 50 UILabels and ...
0
votes
1answer
49 views
NSRegularExpression to detect em-dash in iOS
I currently have the following regex:
static inline NSRegularExpression * AuthorRegularExpression() {
if (!__authorRegularExpression) {
__authorRegularExpression = [[NSRegularExpression ...
0
votes
2answers
55 views
View border with arrow
I am currently designing an iPad application with a number of text fields, when I click these text fields I want a little view to popup (these will contain table views with options etc) all this is ...
0
votes
1answer
49 views
Understanding UIScrollView size behavior when using UIPopoverController
I am going through a book on iOS development, and i'm building a test application for the iPad. I am trying to create a popover when run on the iPad that displays a UIScrollView showing a UIImage that ...
0
votes
1answer
19 views
App crash while loading MKAnnotation in map view
In my application i have integrated a view controller like container (split view). Controller view controller container two view. Detail view and selection view(table view).
While selecting the ...
0
votes
1answer
37 views
Can we show more than one view with navigation bar having different controller as subview to another view?
Currently i am working on project in which i need to show multiple table view as a sub view to view (say view A). I have UIViewController as controller for view A. I created 3 more tableView (say view ...
-1
votes
1answer
30 views
How to get display name propert of contact
I want display property of contact app.Like if i save contact with company name then it display with company.So how to find display name of contact with address book api.
like if i save a contact ...
0
votes
1answer
22 views
new page in pdf created by app
I have an app that creates a report in a pdf form which works fine however the reports are now going over onto a second page. How do I start a new page?
The method used to generate the pdf is:
...
0
votes
3answers
82 views
How to manually send UIKeyboard notification
I have few uitextfields in my ui where keyboard will overlaps few of the uitextfields which are at bottom of my screen, to handle this i have implemented UIKeyboard notifications like
- ...
0
votes
2answers
50 views
Which method to use to display text ?Why?
When drawing using CoreGraphics to draw a string/label we have 2 methods
- (CGSize)drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(NSLineBreakMode)lineBreakMode ...
0
votes
2answers
24 views
Image rotating left when taking picture with iPad
In the application I'm working at you can take a picture with the iPad camera. After that using CoreGraphics you can draw shapes on that image.
At first the image was upside down and mirrored. I ...
0
votes
4answers
101 views
UITableView reloading data not calling cellForRowAtIndexPath [closed]
I am adding a notification
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(ReloadTableView) name:@"Reload" object:nil]; in my viewdidload
-(void)ReloadTableView
{
...
2
votes
1answer
27 views
How to Set Color For CLRegion in iPhone
How to draw circle around the Monitoring Region in CLLocation manager. I want draw Circle around the region i have passed in CoreLocation without Maps.
CLRegion *region = [[CLRegion alloc] ...
0
votes
1answer
24 views
Sending a mail without using MFMailComposeViewController
I'm trying to create a contact us form and the given feedback should have to send through a configured mail address.But my main concern is sending the feedback without using ...




