Tagged Questions
-1
votes
1answer
38 views
How to edit an existing contact [edit]
What i want to do is this:
Users press a button called "Edit an existing contact" then it opens addressbook's list of contacts. The user should choose and find the contact that they want to update, ...
0
votes
1answer
29 views
UIImage Animation Causing App to Crash / Memory Leaks
I'm using a UIImage animation and it is causing numerous memory leaks and crashes for different users using the application.
Below is my code. I am preloading the set of two animation in ...
0
votes
3answers
33 views
Subview with UIButton isn't clickable
Here's the code I'm working with:
UIButton *mainButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[mainButton setImage:[UIImage imageNamed:@"CircleShape.png"] ...
0
votes
0answers
19 views
Adaptive payments in IOS SDK
I am looking to have a parallel payment built into the app so that the user can Use the CARD.IO feature of the new IOS SDK to purchase the item , but then payment is sent to 2 different vendors
Is ...
0
votes
3answers
25 views
viewDidAppear isn't getting called after running from the background
Method viewDidAppear is not getting called after going from the background back into my iPhone Application.
Does anyone have a solution for this?
I need to call a method every time my ...
0
votes
0answers
72 views
iOS looking for a way to refresh/reload a view
Ok refreshing a view seems to me like a possible solution to my problem.
Allow me to first describe the problem i am facing.
I am referencing a view through the singleton class object because i ...
0
votes
2answers
80 views
Memory Leak in iOS application - ARC
I have a hard time figuring out, where my app is leaking. I have tested it with the "Instruments" profiling application by allocations, with heapshots. This is what I got:
As you can see, the ...
0
votes
1answer
24 views
How make background circlular fade
I'm not sure what it's called, I have UIView with UIWebView in it, and I want make it exactly as the screen shot below while UIWebView is loading.
Can anybody help me with that?
Thanks
1
vote
0answers
25 views
FB iOS SDK How to test: Send request and receive it?
im a iOS game developer, im new in this stuff of how integrate facebook SDK. I need facebook to sent and receive virtual gifts from device to device, such as coins, lives, so on.
I already logged in ...
-2
votes
0answers
25 views
How to integrate Facebook SDK into ios App from Zero [closed]
I'm creating a game for ios, and now I have to program the social part of the game.
Does anyone know a good tutorial for facebook sdk integration for IOS, any tutorial besides the one on the Facebook ...
0
votes
1answer
55 views
Apple “In Review” Time [closed]
How long does it take for app to be approved / rejected once it goes into the "in review" phase?
Looking for people to share some stories on time, as I have an ideal deadline for myself on when I ...
0
votes
1answer
25 views
Can not display image in UIImageView
I can not display image in UIImageView
My code .h:
#import <UIKit/UIKit.h>
@interface WarningSignsViewController : UIViewController
{
NSMutableArray *warningPictures;
NSMutableArray ...
0
votes
1answer
44 views
Array of plist update data
I have this two arrays init with two different plist files, plist files are inside document folder not in the bundle so are editable.
progress = [[NSMutableArray alloc] initWithContentsOfFile:[self ...
0
votes
2answers
43 views
App crashing when trying to implement UILongPressGesture
I'm trying to implement a UILongPressGesture on one of my tables in order to be able to reorder its cells. However, every time I long-press my app crashes.
Here's the file that implements the ...
1
vote
3answers
123 views
run app using xcode 4.6 in ios 4.3 simulator
I am actually trying to run my application in 4.3 simulator from xCode 4.6. I copy the sdk for simulator 4.3 at the path, it builds successfully but cant run the application in simulator. So now what ...
1
vote
1answer
26 views
disable uibutton whilst still pressed?
is it possible to disable a uibutton whilst it is tapped by user?
I use the NBTouchAndHoldButton and in my method I want the button to be disabled when a certain number is reached.
i.e
//......
...
0
votes
1answer
33 views
How to convert NSDate into UTC format in iPhone
I need to convert current date into UTC format, i have done the following and got the correct UTC date, below is my source code
NSDate *currDate = [NSDate date];
NSDateFormatter *dateFormatter = ...
3
votes
0answers
30 views
How to save QR code as an contact in address book in iPhone
I have started using QR code in one of my app. I have successfully implemented Google API for scanning phone number and generate QR. I have got QR code working, How do i save that QR code as an ...
-4
votes
0answers
45 views
what is the retain count of objects created without alloc init? [duplicate]
A simple question. What is the retain count of objects created without alloc init. for example
-(void) simpleMethod{
NSString *string=@"some text";
}
What will be the effect of using ...
0
votes
4answers
89 views
what does @autoreleasepool do?
I am using ARC and i know the autoreleasepool sends release to all elements inside it. Consider the following example.
-(NSString*)someMethod{
NSString *string1=@"sample text inside string 1"; ...
0
votes
0answers
30 views
Titanium IOS Application
I have hold IOS/ANDROID application in Titanium (SDK 2.1). Today I want to resubmit my application with SDK titanium 3.1 but nothing appears !
It work with 2.1.
I am a beginner with titanium and I ...
0
votes
1answer
38 views
How would you make a Get Started View in iOS sdk
I'm trying to make a app that i think needs a guide before use but I'm getting a problem when restarting the app and it goes back to the Get Started View not the Main View (UIViewController) I've got ...
0
votes
1answer
31 views
Animate without lag?
I am currently using the following code to animate the transition between a view, and when the refreshTheServers method is called while doing so, the whole application freezes, refreshes the servers, ...
1
vote
1answer
58 views
ios app running out of memory
I am working on an app that imports photos from photo library. While importing the photos its using up alot of memory and after importing 160 photos it crashes.
I dont know why is this happening. Any ...
0
votes
0answers
47 views
Algorithm for placing events on time table [duplicate]
I would like to place some events in a time table generated programmatically. I made an algorithm to do that but it has one problem. Events are placed by "blocs" (bloc are made comparing start time ...
1
vote
3answers
263 views
Facebook iOS SDK 3.5 modal feed dialog loads empty in iPhone
I use this code to present share dialog:
if (![[FBSession activeSession] isOpen]) {[self login]; return;}
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
...
0
votes
2answers
71 views
UITableViewController buttons stick to top during pull to refresh
I am trying to figure out how to have a UITableView with a view at the top which scrolls with the table, but when you pull to refresh, the view stays at the top of the screen and the refresh control ...
1
vote
2answers
69 views
FBLoginView rejects some users
I am using the newest Facebook iOS SDK in my project. I have successfully implemented Facebook login using FBLoginView following their own guide:
https://developers.facebook.com/ios/login-ui-control/
...
1
vote
2answers
27 views
Filter out double space
I am using the following code to filter out line breaks, etc., and replace them with spaces. Then, I am using another line to take that double space and replace it with only one space, but it still ...
0
votes
1answer
35 views
Reverse array content?
I am populating a table view with information, but would like it to be populated in reverse, so that any newly added cells (new email messages) would appear on the top, not the bottom.
What am I ...
0
votes
3answers
59 views
How to check if sim card is installed or not
I am developing an app which has call and message functionality , i want to check if sim card is installed or not coz i am facing problem with messaging as it gives alerts for " Message Sent ...
0
votes
3answers
45 views
How to get indexPath from table view?
So in my app, which is based around UITableViews, I am getting the indexPath for the row for methods like didSelectRowAtIndexPath: like so:
- (void)tableView:(UITableView *)tableView
...
0
votes
1answer
34 views
Send data from device to device
I'm working on local simple chat app for my small company that sends messages from device to device.
Each device is assigned a unique number (for example, 111,112,113, ...).
I need a way to send a ...
0
votes
1answer
144 views
reading data from SQL file into iphone sdk using Xcode
I have problem with reading data from a SQL file.
I have tried everything but it is still not working...
Here is my code:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ...
1
vote
0answers
68 views
Corona SDK: True dragging-collisions
I have been messing around with Corona SDK for a few weeks now, but have not succeeded in creating a genuine collision between a draggable object and a dynamic object.
What I mean: Like in Justin ...
1
vote
2answers
62 views
How to change UIImageView's image in another view controller?
I have a very simple, yet frustrating problem. In my didSelectRowAtIndexPath: method, I am trying to change an UIImageView on another view, but unfortunately, it is not working, and the UIImageView ...
0
votes
2answers
87 views
Image/scene recognition
Hi guys I'm looking for a solution to that enable a user compare a image to a previously store image. For example, i take a picture on my iPhone of a chair and then it will compare to a locally store ...
0
votes
0answers
150 views
Facebook SDK / iOS - people search with [FBRequestConnection startWithGraphPath: - No results
I am performing a facebook people search graph request like so:
-(void)searchFBFor:(NSString*)query {
NSString *q = [NSString stringWithFormat:@"search?q=%@&type=user", [query ...
1
vote
1answer
73 views
Post more than 1 picture in a fb Post
This is my code , and work fine , but i can do only a post for every image :
[params setObject:_selectedPhoto forKey:@"source"];
FBRequestConnection *connect = [[FBRequestConnection ...
0
votes
0answers
55 views
Doubletap and slide/drag finger to zoom in/out
If anyone came across the google maps app for iOS there is a great feature to zoom in/out with one finger:
Doubletap on the uiscrollview and then immediately slide finger up or down to zoom in/out.
...
0
votes
0answers
14 views
AFOpenFlow iPhone SDK slectionDidChange
In my app, I have AFOpenView coverflow showing level packs where a player can select which level they would like to play. When a user taps on a cover, it will take them to another UIViewController to ...
3
votes
1answer
85 views
App just approved crashes on iPad
Hi I have an App on the AppStore, I made an update which is working fine on simulator and my iPad 4 so I sent to AppStore for publishing. The App uses a Sqlite Database that is updated in this ...
0
votes
2answers
63 views
Displaying all objects from array?
I am going to quickly cut to the chase here, I am using the MailCore API to connect to email and download messages into an array, then take those messages in the array and display them into a Table ...
-1
votes
3answers
528 views
How to insert Cell in UICollectionVIew Programatically?
I have a UICollectionView and works fine, But I want to add few cell items programmatically into the collection view.
So how can I achieve this?
To further clarify: when I say programmatically I ...
-2
votes
1answer
90 views
MailCore IMAP Server Causing App to Crash?
I am using MailCore to build my email client and ran into a little problem while try to receive messages from the email account using IMAP.
Here is the code I have in my viewDidLoad for this:
...
1
vote
1answer
83 views
How to check if something is stored in the iPhone keychain?
I have this code currently storing the information into the iPhone keychain. How can I check with a simple if statement if there is something under the same name already stored there to prevent double ...
0
votes
2answers
37 views
How to detect if UITextField is an @me address?
I am building a mail client and want to know how I can detect if the text field has @me in it. Preferably using an if statement.
Thanks!
0
votes
0answers
79 views
LinPhone Iphone Building the SDK
I am trying to build LinPhone for iPhone. I have followed all the steps of the README file. The building was going good until it crash at this point.
Loading config.site for iPhone ...
0
votes
1answer
68 views
facebook ios sdk isn't working. iphone
I followed all the steps from here http://developers.facebook.com/docs/getting-started/facebook-sdk-for-ios/ (Adding SDK & framework dependencies, Adding SQLite and the -ObjC linker flag, Adding ...
0
votes
1answer
86 views
Tutorial for saving credentials into iPhone keychain?
I have been searching for UPDATED tutorials on how to access and save to the iPhone's keychain, but cant seem to find any that dont give me bucket-loads of errors, and use deprecated code.
If someone ...

