Tagged Questions
iOS is Apple's operating system for mobile devices, such as the iPhone, iPod touch, iPad and Apple TV (2nd generation) devices. It shares a lot with Mac OS X, but is optimized for touch-based interfaces.
0
votes
0answers
4 views
Is it possible to use Sencha Touch 2 to build native ios/android app packages?
I came across some reading saying that we are able to build native ios/android packages (apk & ipa) with Sencha Touch 2: akp, ipa.
Has anybody even done it and deploy successfully?
If so, Sencha ...
-1
votes
0answers
12 views
Don't want image overlaps in TableViewCell while im building a twitter like tweet list
I'm building a tweet list like twitter,each TableViewCell has a image,images will overlap while pull up the TableView.
But,I Dont Want Them Overlaps!i dont know how.thx.
0
votes
2answers
16 views
iOS static library does not work
I followed the instructions in this article to create a static library:
http://developer.apple.com/library/ios/#technotes/iOSStaticLibraries/Articles/creating.html
I built it for iPhone simulator ...
0
votes
0answers
6 views
How to create sqlite database in phonegap xcode?
I am wondering how to create and call my database that i created in xcode (phonegap).
I try to follow this documentation (http://docs.phonegap.com/en/2.2.0/cordova_storage_storage.md.html#Database), ...
0
votes
0answers
10 views
ios provisioning profile cannot transfer to device
I recently downloaded an ios provisioning profile to my new macbook. In the organizer library it says the profile is valid; however, when I try to add it to my iPad, it says "MyIpad is not included in ...
2
votes
0answers
22 views
what happens between willSelectRowAtIndexPath and prepareForSegue? Need debugging advice
Somewhere in between these two calls, i get EXC_BAD_ACCESS (Code=2, address=0xa).
The common explanation for bad access is accessing a released object - I've compiled with NSZombies enabled and that ...
2
votes
1answer
24 views
No @interface for CalculatorViewController
This is the error that appears for both the 'double result' and 'if' at the bottom.
Not sure why this is happening, it is from an Itunes U lecture and as far as I can tell from scanning it multiple ...
-3
votes
1answer
33 views
How to add/sum hours from array in Objective C
I am new to ios programming and I am stuck on something so simple but cant find answer anywhere ...I need help pls.
I am have a array and it has hours store in it like-
11:30
13:45
18:00
23:05
How ...
0
votes
0answers
7 views
Font not kerning in iOS
I've created a custom font using FontForge for use in my iOS app. When I use the font in my app, kerning is not being applied. There is a known bug that kerning is not being applied for UITextView. ...
0
votes
0answers
7 views
Manage AFNetworking multiple requests with AFHTTPClient enqueueBatchOfHTTPRequestOperationsWithRequests method
I want to create a table view slide menu like FB or Linkedin, I mean dynamically, so I have to make some requests at the same time. I am using AFNetworking. with a custom AFHTTTPClient which its ...
0
votes
0answers
6 views
SystemSoundID Sometimes Changing With Device Volume
I am playing sound effects in my game using the SystemSoundID class, with some odd results. A few of my sounds, including landed1 below, change volume according to the volume buttons, but others, like ...
0
votes
1answer
39 views
remove excess white space
I have an unfiltered string that may or may not have an excess amount of white spaces. So for example we have the following string:
NSString *testData= @"Jim Bob Marcus Trent Mark\n\n
...
0
votes
0answers
23 views
Setting Table View Cell Image
I've set the image for the cells in my table view, but the lines dividing the cells aren't showing. What have I done wrong?
- (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
0answers
6 views
Prevent UIWebView from Freezing and Crashing After A Return to The App
My app uses the framework NimbleKit, which relies heavily on UIWebViews. Essentially there is only one large web view in the application, and thus it uses alot of memory.
The issue is, after a user ...
0
votes
1answer
45 views
What is this view called? IOS
I've seen this all over IOS apps and I'm trying to add it to my own. I know it won't be hard, but I need someone to point me in the direction of some apple documentation by telling me what developers ...
0
votes
0answers
6 views
Set iOS Internet Connection DNS pragmatically
Is there a way to pragmatically set the current wi-fi or cellular connection's DNS setting from either:
An app via a framework (I imagine unlikely given iOS' sandboxed nature)
A profile (I looked at ...
3
votes
5answers
60 views
in Obj-C, how could I make a switch statement that will evaluate classes, rather than just numbers?
in Obj-C a switch can only evaluate numbers. I'd like to be able to use it to compare classes of objects, something like this, for instance:
switch (currentSubViewController.class)
{
case ...
0
votes
0answers
12 views
ios DatePicker alternative or how to select multiple dates?
Ok, I have application with lists of to do tasks and I want to allow user to select due date for each task on a single screen. How would I go about doing this, datePicker seems just to big and clumsy. ...
0
votes
0answers
3 views
TStylebook iOS Delphi XE4
Does anyone know if the TStylebook component will allow a user to change the look of the listview... (Not just an item title and detail). It works on a windows app which is fine, but i would like to ...
1
vote
2answers
14 views
iOS - Push Notifications not sent for production
I have push notifications working perfectly for my app using the development aps-environment. However they do not work for the production environment. As far as I an aware, all my certificates and ...
1
vote
2answers
35 views
Is delegate still unsafe unretained?
I'm reading BNR 3rd Edition, and it says that delegate is unsafe unretained instead of weak by default for backwards compatibility. And I was wondering if this is still true for the newest version of ...
0
votes
0answers
5 views
aurioTouch2 FFT visualizer not workin
I'm looking at the Apple aurioTouch example code and the FFT view doesn't seem to work. When I switch to that view, I see a nice spectrum for an instant, and then it rolls up to the top of the ...
0
votes
0answers
11 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
15 views
Is it ok to keep multiple child view controllers associated with a parent UIViewController even when their views are not visible?
Scenario: I have a set of objects. I wish to display them using a UITableView when the device is in Portrait mode, and in UICollectionView when it is in landscape. To accomplish this, I want to use ...
1
vote
1answer
18 views
How to handle and display asynchronous data returned in a background thread in the iOS UI
I am new to using background threads to display data in the iOS UI.
I am now using the Parse SDK for all of my backend data management. It seems all of the Parse methods return data asynchronously ...
0
votes
1answer
29 views
Sending Images and data to PHP server-side
It,s my first time trying to send Images & Data to a PHP Server from an app, and I am quite confused as to what's the best way to achieve this.
In my research, I came across AFNetworking library ...
2
votes
0answers
18 views
How to dynamically resize UITableViewCell based on UITableView scrolling?
I have tried looking for an answer to this question but so far I haven't got any luck.
Context
I have a UITableView inside a standard UIViewController (NOT a UITableViewController..). I have ...
0
votes
2answers
38 views
Two objects that points to one
I have a methode like this :
-(void)myMethod:(MyClass *)object {
self.object1 = object;
self.object2 = object;
....
}
and object1 and object2 are declared like this :
property (nonatomic, ...
0
votes
0answers
11 views
Listing Neareast Locations from MySQL in TableView
I'm working on an iPhone app that communicates with a MySQL database. Currently, the database is populated with a number of different locations, each with Postal/ZIP Codes.
How would I go about ...
1
vote
0answers
8 views
Paypal iOS Preapproved Payments: Show price?
As stated in the documentation and in this thread, I know the flag displayMaxTotalAmount makes sure the preapproval dialog shows the Price of the preapproved payment,
But I can't find any option of ...
0
votes
2answers
16 views
Compress an iPhone image before upload
I have the following upload code, which is called after a users selects an image from their photo album:
public void Picked(object sender, UIImagePickerMediaPickedEventArgs e)
{
...
1
vote
0answers
24 views
Text not centering on custom UISegmentedControl
So I created a custom UISegmentControl and it looks great, but the labels of the first and last buttons are not centering. I was told to put this in the implementation file to fix it, but it doesn't ...
0
votes
0answers
25 views
Trying to give UILabel a shadow, but it won't show up
I'm trying to give a label in one of the classes in my app a drop shadow, but it's not working at all. Nothing shows up. What am I doing wrong?
// Set label properties
titleLabel.font = [UIFont ...
0
votes
1answer
15 views
How to identify UIWebView as Safari
Hi my UIWebView is identifying as Mozzila/5.0 (iPhone; CPU iPhone OS 6_1_2 like Mac OS X), and Safari is identifying as Safari iOS6. And the webpage that I want load with UIWebView only support ...
0
votes
0answers
18 views
How can i add numbers to NSDate to form a new NSDate and make a timer between current time and that NSDate?
EDIT
I have a specific NSDate and i want to add hours to that NSDate for making a timer between current date and that NSDate. I wrote some codes from my researches but i could not get what i want. ...
0
votes
1answer
29 views
UITextField becomeFirstResponder is not working inside dynamic cell
I have UITextField inside the first cell of UITableView, whenever it changes the table is changing too. The problem is that when the table is updated the field loses first responder status and ...
0
votes
3answers
30 views
When setting the frame of a UILabel, is it possible to set it to the vertical and horizontal center of the superview in code?
Like, CGRectMake(), but have it specify the center, both horizontally and vertically?
0
votes
0answers
2 views
Checkins does not show up on /pageid/checkins when checked in via SDK
I have developed an iOS app that allows users to checkin to my clients place of business directly without opening the Facebook native iOS app.
This is completed with the Facebook SDK method ...
0
votes
1answer
20 views
UIImageView resizes for in simulator when XIB doesn't
I have an XIB which looks like this:
, but when I run it in simulator (or on device)
it processes like this:
and over-streches. How do I prevent it from stretching and being weird when I simulate ...
0
votes
1answer
19 views
Changing specific row in table from void
I have a populated TableView where i would like to change the image. When I'm inside cellForRowAtIndexPath I can change it by using:
cell.imageView.image = [UIImage imageNamed:@"image.png"];
But I ...
0
votes
0answers
28 views
Getting signal sigabrt exception, cant find the error
So im getting this strange sigabrt exception, I added an all exception breakpoint and the line I'm getting the exception on is this:
[self performSegueWithIdentifier: @"SolveSound" sender: self];
...
3
votes
0answers
20 views
Are account names (kSecAttrAccount) encrypted in iOS keychain?
Apple's GenericKeychain example saves a username and password in the iOS keychain. It does this using kSecAttrAccount for the username, and kSecValueData for the password.
Are all data items placed ...
1
vote
1answer
19 views
Animating a UIView
I have an animated rectangle that grows in length:
[UIView animateWithDuration:60
animations:^{
CGRect frame = left.frame;
// adjust size of frame ...
0
votes
0answers
18 views
A way to print mailing labels from an iOS app
Is there a way ( 3-rd party SDK maybe ) that allows an app to pass in contact names/data in order to generate labels ( e.g. mailing labels ) that the calling app can then print?
Example calling ...
0
votes
3answers
39 views
How to alter tableview cell text?
I have a UITableView that I want to alter some of the static cells after I do other processing. I have outlets set up for the cells that I want to modify, but when I look at them using NSLog, they ...
-1
votes
0answers
6 views
Trying to close MPMoviePlayerController view with MPMovieControlStyleNone
I'm trying to create a touch gesture to cancel a video on touch but I can't get it to work, http://pastebin.com/asJjmFij . Any thoughts on where I might be going wrong?
I tap the screen but nothing ...
3
votes
1answer
34 views
What is xcscheme file? What is it purpose?
I am a newbie learning the iOS.
Can someone please explain what is the purpose of the xcscheme file?
0
votes
0answers
18 views
MapKit work on simulator but not on device
When i call my map view controller on device app just get stuck, nothing happen, XCode dosent evet throw an error.
but same code work just fine on simulator. code for presenting map view:
...
1
vote
0answers
38 views
iOS crashes with EXC_BAD_ACCESS(code=1)
I'm new to iOS, so don't be shy about pointing out any of my code that looks completely idiotic :)
Here goes...
Two view controllers - OrderViewController and LineItemViewController - when the user ...
0
votes
0answers
10 views
Camera and Photo roll random crashes
hi in my app i have the ability to take or choose a photo and display it in an image view i have 12 image views and so you can pick 12 photos and display them
my problem is the fact the app crashes ...




