Questions tagged [iphone-sdk-3.0]

Refers to the iPhone software development kit, version 3.0.

2772 questions
1
vote
2 answers

Is MFMailComposeViewController configurable at all?

I want to use MFMailComposeViewController in my app, like in Apple's MailComposer example application, but ... I don't want the user to be able to edit the "To:" field, in fact I don't want to display it at all. I don't want to display or have the…
Steve Denenberg
1
vote
4 answers

iPhone - cannot test in-app purchases

I have created a test account for sandbox testing of in-app purchases. I am following these steps to test Logged out of any existing accounts Open app and start getting list of products available Start process to download a product SKPayment…
lostInTransit
  • 70,519
  • 61
  • 198
  • 274
1
vote
0 answers

How to compile pjsip for iphone 3.0

I have been trying to compile pjsip for iphone 3.0 but I have been unable to do so. I have tried following the guides on siphon and voiphone (open souce iphone projects that use pjsip). And apparently I am not the only one that is unable to compile…
Oscar Gomez
  • 18,436
  • 13
  • 85
  • 118
1
vote
2 answers

MPMusicPlayerController stops sending notifications

I have a MPMusicPlayerController playing the entire iPod library and I'm subscribed to the notifications when tracks change etc. This is all working correctly When the end of the playlist is reached, MPMusicPlayerController sends a change of state…
jasongullickson
  • 1,021
  • 1
  • 14
  • 28
1
vote
2 answers

Load a row from NIB in UIPickerView viewForRow

I'd like to create a fairly complex row in my UIPicker. All of the examples I've seen create a view from scratch like so... - (UIView *) pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent: (NSInteger)component…
Vineel Shah
  • 960
  • 6
  • 14
1
vote
1 answer

Error on CLLocation subclassing

I'm trying to make a new CLLocation subclass. This is the skeleton: #import #import @interface JFLocation : CLLocation { } @end #import "JFLocation.h" @implementation JFLocation @end When I…
Jorge
  • 2,156
  • 2
  • 22
  • 29
1
vote
1 answer

iphone device Testing errors?

I'm currently trying to test my iPhone application on a real device but I have multiple errors like that: Undefined symbols: "_OBJC_CLASS_$_UITableView", referenced from: __objc_classrefs__DATA@0 in CustomSearchController.o …
Mathieu
  • 1,175
  • 4
  • 19
  • 34
1
vote
1 answer

Build iPhone app for 2.2.1 but use 3.0 features (copy & paste)

I want to add copy and paste to my application but make it available to 2.2.1 devices. How should I proceed? I saw SDKs and Deployment Targets. If I understand correctly, I set the base SDK to 3.0 in order to be able to compile with 3.0 API (copy &…
JFMartin
  • 149
  • 1
  • 10
1
vote
1 answer

: CGImageSourceGetType image source parameter is nil\n - iPhone SDK

I'm seeing this in the Debugger Console: : CGImageSourceGetType image source parameter is nil\n I think it may be related to the UIWebView used by the Mobclix ad library. I didn't observe any adverse behavior in my app, but I may be missing…
Elliot
  • 6,086
  • 11
  • 45
  • 57
1
vote
1 answer

iPhone Login Screen that shows a Table View after logging in the user

I have a navigation based template application, I parse data into table view. I want to put a login screen before parse the data. I did the login screen and and succeed the login check. My problem is that when the user presses the button I change…
Mert
1
vote
1 answer

iPhone - where can i find a sample of GKVoiceChatClient?

I want to be able to let users of my iPhone app communicate using the GKVoiceChatClient classes. The documentation for the 3.0 SDK is very vague and I don't see any good samples in the Sample Code either. Can someone please tell me where I can find…
lostInTransit
  • 70,519
  • 61
  • 198
  • 274
1
vote
1 answer

Subclassing UIImage and adding to UIImageView

Can anyone help me with this. I need to do custom drawing code in -drawRect so I subclassed UIImage. How would I initialize my custom UIImage with an image? Say I override the imageName method, what would I need to do in this method? After…
CodeMonkey
1
vote
1 answer

How can i divide a snapshot into pieces with xcode so that i can make the user interact with each of the pieces?

My app's requirement is that it needs to take a picture and then divide it into pieces. Say for example there are 8 rows and eight columns. I might name the rows to A through H while i might name the colums to be from 1 through 8. Suppose the user…
phoenix
  • 549
  • 1
  • 7
  • 21
1
vote
1 answer

wait_fences: failed to receive reply: 10004003 in UIImagePickerController

I got this error when I wrote the code mentioned below.Basically I want to save video captured by UIImagePickerController to my app directory.I am not getting where I've made mistake.Please help me.. - (void) imagePickerController:…
Shubham Sharma
  • 499
  • 4
  • 9
  • 21
1
vote
3 answers

How to receive application wide events with multiview application

I am developing an iPhone application with multiviews (Nav controller), but i like to receive an event if user touches in any view of the view. I understand it can be done by subclassing application delegate? If that's true how can i do it? My…
iamMobile
  • 959
  • 2
  • 17
  • 35