0
votes
1answer
28 views

how to add cc in email while sending email from iphone app

I am sending email from iphone app it is working fine i want to add cc also in email any idea how to do this .i am using following code can you please help how to add CC in this. thanks. ...
1
vote
2answers
47 views

SQLite Database table never created

I'm trying to create a SQLite Database but run into a problem that seems to derive from the table CONTACTS never being created (I get the error message 'Error while inserting 'no such table: CONTACTS' ...
1
vote
1answer
62 views

Faster way to load Images in Collection View

I have a little flow problem with my UICollectionView. I want to display PDF's thumbnails just like in Apple's iBook app, when I scroll my collection view I can see it's not really smooth. Here is the ...
0
votes
2answers
50 views

Crashing while assigning nil to UIViewController after removing view and popping

I have a sequence in which I need to pop a UIViewcontroller from outside the class. From the server I will get an log out event, and I need to pop the view controller if it is open. So I have done ...
2
votes
3answers
32 views

Force portrait in one view controller makes other to be in portrait initially

The root view controller of navigation controller supports only portrait orientation and other controllers supports all orientation.Now if i am on the root view controller and the DEVICES is in ...
0
votes
2answers
66 views

Can't save string into SQLite database (SQLITE_DONE doesn't return true)

I'm trying to store strings in a SQLite database for an iOS 6 iPhone Application. It's fairly simple: a joke is displayed in a textview when clicking a button. When clicking a second button, I want to ...
0
votes
4answers
45 views

change return key type of last dynamic generated textfeild

I am generating 4 dynamic UITextField all with return key type next and when i press next the focus gets transferred to next UITextField but what i want is when 4th UITextField gets focus its return ...
-1
votes
2answers
57 views

Making an NSDateFormatter to parse ISO dates

I have a simple question but it is driving me nuts. I am using an API, and I get a JSon object back, and one of the fields is a date. The date is formatted like this: 2013-05-17T02:00:00.000Z. I ...
0
votes
0answers
34 views

How to Lazy Load a static library?

I am working on a project that involves card swiping on different types of swipers from different vendors. These swipers have their own static libraries. I had no issues in integrating these libraries ...
1
vote
1answer
50 views

Update Tableview via Notifications

How do I get a table view to update via NSNotification via Push Notifications? When my app receives a notification, via the App Delegate's - (void)application:(UIApplication*)application ...
1
vote
0answers
22 views

Custom UIImagePickerViewController view hides StatusBar

I know that a lot of people have asked this, but I am having a hard time with showing the status bar when I call the UIImagePickerViewController. I implemented it in my app as a "custom" control, ...
0
votes
2answers
48 views

Custom UITableViewCell setup everything in init* or use properties

I'm wondering what is the best approach/design when using custom UITableViewCells. One way I'm doing it is having a init that takes all parameters necessary to setup the UITableViewCell. Like ...
1
vote
2answers
93 views

How to add a button on the Google maps in iOS?

I am new to iOS Programming and I have downloaded the google maps sdk for iOS and followed the instruction on their website ( as shown in this link ...
0
votes
2answers
44 views

Best Way To Find a Username From a Facebook ID

I have a facebook user's id. How do I get their username? Specifically, I am using a FBFriendPickerController for (id<FBGraphUser> user in self.friendPickerController.selection) { ...
0
votes
0answers
21 views

CoreData iCoud-Sync: Updates do not take effect

I m trying to add a iCloud-Sync to one of my existing apps, using CoreData. I implemented my CoreDataStack as a Singleton looking like this: Header: #import <Foundation/Foundation.h> #import ...
0
votes
1answer
25 views

Disabling simultaneous rightBarButton / tapGestureRecognizer touch

I have a viewController that makes its navigationBar and statusBar disappear / reappear when the user taps the screen (much like the photos app). I'm noticing when I push the rightBarButton "Done" on ...
0
votes
1answer
52 views

What is the difference between self.managedObjectContext and managedObjectInstance.managedObjectContext?

So, I have the CoreData entities Book, Bookmark, Highlight. A book contains information about the book and an NSSet of Bookmarks. I want to delete the bookmarks present in one book and then ...
1
vote
1answer
56 views

Sorting NSFetchedResultsController on a instance variable [duplicate]

I am using NSFetchedResultsController to show restaurants in a table view. I had restaurants location saved in database and user location saved in a variable. Now my problem is how i can show the ...
0
votes
1answer
42 views

Setting three sided border for UITableView - IOS

For my design specifications, my table view should only have three borders on top, left, and right. I have added it using the following code.... CGSize mainViewSize = menu_table.bounds.size; CGFloat ...
0
votes
0answers
26 views

NSMutableParagraphStyle shifting text down slightly?

I have a UILabel which uses an NSAttributedString to display "GAME OVER". I have positioned the text in IB and it displays in the correct place. My problem is that I want the text centred onscreen but ...
1
vote
3answers
96 views

Display UITableView like UIActionsheet style?

I have been trying to display UITableView like UIActionsheet showFromRect: style. Is there any way to do it programatically or Do I need to use image for that. Please check the below image...
0
votes
1answer
57 views

Strange color in UIActionSheet

Today I added one UIActionSheet to my project and it displayed very strangely: As you can see, the action sheet displays only text - no buttons - and the background is completely black. I just want ...
1
vote
2answers
52 views

How to show a progress bar while encoding to .mp3, using LAME on the iPhone?

I'm using LAME to encode a .caf audio file to .mp3 on my iPhone app. All works perfectly and I'm just having a difficult time trying to figure out how to log the progress of the audio file conversion ...
-1
votes
2answers
27 views

What UI class / element is used for volume changes, video play / pause [closed]

I am trying to figure out if this is a standard UI element that is public. Specifically, I would like to use the version for pausing (that is used in media playback) to show that my app is paused.
0
votes
1answer
41 views

UIButton - Frame and Bounds Zero - Page Based Application

There is a similar but unresolved question bound and frame for a UIButton I am using Storyboards with autolayout and The "Page Based Application Template" I am able to reproduce this problem by ...
0
votes
1answer
88 views

Preventing iPhone app for inactive state

I need screen ON/OFF callbacks and voice call callbacks. But i am receiving callbacks when my app is in foreground. But i am unable to get delegate callbacks when my app is in background. How is it ...
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 ...
0
votes
1answer
75 views

iPhone Programming - Setting Group Ringtones

I have been doing a lot of research if we can assign ringtones to groups in iPhone. The obvious answer that I could find was that Apple doesn't provide a public API to do that. My next idea was to ...
3
votes
2answers
103 views

Reminders.app two-way synchronisation logic

I want my app to synchronise with the Reminders.app. (my app utilizes Core Data) I've already done a prototype and it works, but there are some bugs I can't think through. Right now my sync ...
-2
votes
2answers
66 views

Save and load the image of a button in my iPhone app

Ok so I i am trying to make the user pick an image from the iphone photos and save that image as an image on a button. When the user shuts down the app and opens it again I want the user to see his ...
-1
votes
1answer
34 views

Possible to publish app to specific app stores? [closed]

I was wondering, is it possible to publish an app to specific app stores, like ones where I know the ads will be targeted towards them? Or is there a way to set something in my app to do certain ...
0
votes
0answers
44 views

Swipe gesture “down” activated when swiping right

I've been adding iPad interfaces to my project, and was just testing it. At a certain page, I have a swipe gesture ( Direction down ) set to dismiss the current view. I have a iPhone and a iPad ...
0
votes
2answers
32 views

Label load with “weird characters” from server

I have a label in a view which loads a plain text file and displays the content, but it displays weird characters not located in the .txt file along with the real content. The text file has one line ...
-4
votes
1answer
56 views

Is using iPhone IMEI number acceptable after May 1? [closed]

can we use iPhone IMEI number in code after may 1st?As using UDID is forbidden now, Does same issue go for IMEI number?
0
votes
0answers
46 views

Noise cancellation/reduction in iphone player

I want to create an iphone app which reduce/cancel the background noise of the Audio ..Is there any existing library for this .? Is there any way to do this with AVAudioPlayer .? Thanks in Advance . ...
0
votes
4answers
73 views

How to filter array of NSDictioanry for key seprated by comma

I have an array of NSDictionary.NSDictionary has a key named as multiple_image key that contain string seprated by ,. I want set of array that contain 123.png for multiple_images key. Can some one ...
0
votes
3answers
68 views

long running REST API

A backend API I need to connect to takes about 3-4 minutes to return a response. The iOS client seems to timeout at exactly 60 seconds (which is the default), and I can't figure out how to extend that ...
0
votes
1answer
37 views

Get total number of filled row in table in SQLite

My Question is Similar to MySQL, count the number of "filled" fields in a table But i can not got my proper solution. How is it possible in Sqlite? I Know about get using for loop. but i ...
-2
votes
2answers
48 views

iOS, how do I add the signal strength bars to the iphone simulator?

I've managed to change the carrier name on the iphone simulator. https://gist.github.com/0xced/3035167 However, I'm missing the network signal strength bars. Can't find any such workarounds ?
-2
votes
1answer
44 views

What is best way to stream video from server in ios [closed]

I am working on an ios application in which i have to play video from server. Please suggest me how it is possible in best efficient way. Thanks.
0
votes
1answer
40 views

Launch UIActivity without UIActivityViewController?

Was wondering if it's possible to launch a UIActivity from my own menu with my own buttons, rather than having to launch a UIActivityViewController. I do know that it's possible using ...
2
votes
2answers
70 views

NSSetUncaughtExceptionHandler Hijacked by Third Party SDK

Edit: for those who're wondering what that SDK is, it's a Chinese clone of Flurry, ==>> Umeng. Edit 2: there's actually a disable crash log handling option in that weird SDK, which will make my ...
0
votes
1answer
33 views

controlling display coordinates of view item added to toolbar

I want to have precise control over the custom view I add to my UINavigationController toolbar. More specifically.. i want to display a UILable ontop of the items in my toolbar. I have a toolbarItems ...
2
votes
1answer
108 views

Adding a subview like UISlider or UIButtom in Google Maps in iPhone

I am new to iOS Programming and have very little knowledge about COCOA Touch. I am trying to add a button on the screen at the bottom over Google maps for giving an option to the user to go back to ...
2
votes
4answers
65 views

Crash with multiline UIAlertView message

Crash log -[UIAlertView displayScrollerIndicators]: unrecognized selector sent to instance 0x1fbaf120 The code is: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Some ...
0
votes
1answer
41 views

How to bring Gradient look - IOS

In my application I need to bring gradient look on my views, toolbars, UITableviewCells, etc.. I have done temporarily by setting background images, However I don't know it's a proper way, Is there ...
2
votes
3answers
59 views

Identifying devices uniquely

I am using UUID for blocking users from using my application, when they violates rules of application. But UUID is deprecated in iphone so now i am creating a custom uuid and saving it in keychain. ...
6
votes
0answers
49 views

Using vibrate and AVCaptureSession at the same time

I'm trying to vibrate the phone while recording video, but I'm finding that AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); doesn't play nicely with AVCaptureSession. Is there any other way to ...
0
votes
1answer
43 views

Button changes orientation on touch catched. IOS

I had to animate few button in such a way that it looks like they are rotating onto screen from below and managed to do that. In order for the solution to work I needed to change buttons orientation ...
-1
votes
0answers
28 views

ios Substituting a tabbar controller with a modal view custom menu [closed]

I'd like to substitute a tabbar controller with a modal view menu. That menu view would be called from a navigation controller tab bar button. The menu view would consist in a view with 4 custom ...

1 2 3 4 5 287