It was working perfectly and was calling its functions when I was doing it on simulator. But when I tried on Itouch, it is just ignoring the function calls of the class like it doesnt exist? Is it because it doesnt have GPS?
...
I don't want to compile my app every-time I want to test it in instruments is there any other program or way of utilizing this benefit without having to compile every-time?
...
While I m trying to get data from the URL it returns nil. But the same line works in other projects. I have tested it with by creating new project. My code is here
NSData *imgData=[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://image.projectnext.eu/RBXF_Icon.jpg"]];
it gets data perfectly in my test project but not working ...
I am new in iphone application and i want to make table view using coding so will you please give me some suggestion?
...
I have an app that uses a UINavigationController as its main way of showing data.I want a Settings screen to pop up, but I also want to be able to push new views for Settings. From what I've found, I can't use a UIViewController do to this. How can I present a view by sliding it, and also have content pushed onto it?
...
Hello,
what is the difference between framework and bundle in iphone OS?
...
Hi all
while doing adhoc testing tester got the crash with the crash report :
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_PROTECTION_FAILURE at 0x2ff00ff4
the appllication never crashes in simulator but certainly crashes in the device .
when I testes it with Object alloc I got some strange allocation like in the ...
I am new in iphone application.Im my application i have to download image and stored in somefile so how this is possible please give me some idea about it.
...
ABAddressBook mybook = new ABAddressBook();
ABPerson[] allPeople = mybook.GetPeople();
foreach(ABPerson thisPerson in allPeople){
if(thisPerson.GetPhones() != null)
ABMultiValue<string> myMultiPhone = thisPerson.GetPhones();
}
}
I have the previous code in my application. With Monotouch build 1.4 my applicat...
In my game application there is one UITextfield.When i touch on the textfield then cursor will display in blue color.I want to change cursor color in UITextField.Is it possible?If possible then please give me idea.
...
Hi, I'm noob here but, why is it i'm getting this error?
I DO have a table named Team in an SQLite called Team.sqlite! Is there anything else I need to provide?
ERROR
---------------
2009-12-23 23:17:05.277 PitScout[6690:207] *** Assertion failure in -[Team addTeam], /Users/******/Desktop/PitScout/Classes/Team.m:90
2009-12-23 23:17:0...
How to get the trimming video function working on iPhone? I am using UIImagePicker to capture videos, and set allowsEditing to YES.
In the view with the "Use" button right after video captured, I was able to drag the yellow trimming box, but it looks like the video saved are not trimmed. Any ideas?
Thanks!
...
How can I load vector image directly with iPhone SDK? Just as UIImage loads bitmap images.
...
Two of my app's beta testers are on PC. I emailed them the mobile provisioning file for the app, they dragged it to the Library group, synched to their iPods, but then upon going to Settings > General on the iPod no profile appears. It works fine for me (I'm on a Mac) and both their devices are setup in Apple's developer portal. Is there...
Hey guys! I create a UIButton instance(named "button") with a image use [UIButton setImage:forState:] function, the button.frame is larger than the image's size.
Now I want to scale this button's image smaller. I had tried to change button.imageView.frame, button.imageView.bounds and button.imageView.contentMode, but all seem ineffective...
I'm animating a view between two points using UIViewAnimationCurveLinear, so I know the velocity of this animation. In certain circumstances I want to append a UIViewAnimationCurveEaseOut to make the view slow to a stop. To make this effect seamless, the ease-out animation must start at the same velocity as the linear animation that pr...
Hi every one,
What is the color of "Info" view of a contact info in IPhone? When you're viewing the details of a contract, you can observe that the background color with white lines in the contact's "Info" view. If I want to set the same color to my UIViewController how can I set the same?
And one more, when you're viewing a contract's...
I have a very clear question:
//.h file
@property (nonatomic, retain)NSMutableString * retainString;
@property (nonatomic, copy)NSMutableString * copyString;
//.m file
@synthesis retainString, copyString;
-(void)Process
{
NSMutableString *test = [[NSMutableString alloc]inti];//retain count should be 1
self.retainString = test;
...
hi all,
i am new to iPhone.
i want to ask that whether sqlite support the synchronization data with server database
...
Hi,
I have just started developing using Youtube API and stuck in very beginning. I want to know how we can read a channel on Youtube. Means what should I do to read data present on any channel.
Should I use a url and post request on this url.
Or is there any method in the Youtube API calling which i can get the data on a channel.
P...