Xcode is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.
0
votes
0answers
9 views
How to change event of return key?
i have 4 text fields , i want to parform following actions by clicking on return key -
1- when i enter entry in one field and press return key , curser should be jumped on next
TextField .
...
3
votes
1answer
18 views
Custom TableView-Cell (Data from server) select multiple values with accessory change
I am working with TableView and wanted Custom TableViewCell to have a Small Image, Name and one custom image (With Tickmark and without Tick) can be on accessory to show if Cell is selected and if ...
0
votes
1answer
25 views
Orientating app's view to landscape and portrait
I've UIViewController and another UIView with some images and labels on it.
I wanna change orientation and it works well, I can change aqGridview frame when rotating device,
The main problem is ...
0
votes
0answers
4 views
UIWebView not able to play sound when hitting it with game url
Both Safari and Chrome on iPhone can play the backend sound when visit this webpage. However, when use UIWebView to visit it, there is no backend sound. There must be some special setting to make it ...
0
votes
1answer
7 views
Xcode two Piechart in view controller
Can I use two CPTPiechart in view controller ?
I got a problem on dataSource and delegate.
Here is my code: // first piechart
-(IBAction)TG:(id)sender{
pieanother *InterPie = [[pieanother ...
-1
votes
0answers
13 views
friend picker Facebook ios sdk iOS6
I am trying to implement a Facebook friend picker to my Xcode iOS6 project. I have followed a few tutorials on the Facebook Developers website, but none of them worked for me. It would be great if you ...
0
votes
0answers
8 views
Upload file using ASIHttp request without using key
I am using ASIHttp library for uploading files to the server.I was using the following code
[request setFile:dataPath forKey:@"file"];
But I want upload the file without the key.Any one tell me a ...
2
votes
2answers
42 views
Literal array notation in Objective-C
Sorry for maybe stupid question, I am a very beginner.
In some test code for iOS I see:
UITableViewCell *cell = cellsArray[indexPath.section][indexPath.row];
How can I spell out right part of this ...
0
votes
1answer
17 views
Scrubbing effect like music app to change value
I have a blank, transparent button which, when I drag left and right, and up and down, want a number to get incremented and decremented depending on how far away from the button the finger is.
Quite ...
0
votes
1answer
32 views
Xcode empty ViewController
I have a problem with my app in xcode. It worked good but when I tried Indicator my ViewController.xib doesnt show iphone. I have only empty ViewController.xib and iOS simulator return "Thread 1 : ...
0
votes
3answers
38 views
Data not getting deleted from database using SQLite
I have loaded some data in my tableview using SQLite database in the format 1) some value, 2) some value so on. 1 and 2 are primary key, this is my code for delete which I have put on the swipe on ...
0
votes
0answers
16 views
Bahasa Melayu in iOS and Xcode
I have an App whose target audience is based in Malaysia and can read and type in Malaysian Language. I have Localizable.strings file in Malaysian language.
There is an option in iOS for "Bahasa ...
0
votes
1answer
15 views
Is it possible to create user account for only can create IPA file but cannot delete or touch anything else?
I know it is awkward question but i cant find certain answer in internet yet. Is it possible to create users in Member Center for people create IPA files on my IOS developer account? But they have to ...
0
votes
0answers
10 views
SDL2 + OpenGL 3.2 : Window doesn't show up in sample code
Since SDL2 was just released, I just wanted to give it a try. Using xcode on OSX 10.8.4, I'm compiling the SDL2+OpenGL3.2 example found on the wiki (here).
Everything runs smoothly, except that no ...
0
votes
0answers
11 views
Retrieving bmp from CFBundle Xcode
I have a SDL application I am making in xcode.
int main( int argc, char* args[] )
{
//Start SDL
SDL_Init( SDL_INIT_EVERYTHING );
//The images
SDL_Surface* hello = NULL;
...