iphone

Is it possible to get Facebook Friends contact number in iPhone app?

Is it possible to get Facebook Friends' contact number in iPhone app?? ...

how to update sqlite3 database fields in external source

i need to update my sqlite database which is on the external source(URL). ...

JSON and Core Data on the iPhone

I have a core data object graph (consisting of two entities linked by a to-many relationship). I was curious, as a relatively inexperienced iPhone developer, whether anyone could recommend an approach, and a suitable JSON implementation for the iPhone, which would allow me to: 1) convert the core data records into a JSON string (whils...

[Stanford iTunes U] iPhone - creating outlets and actions on object from Interface Builder

In the initial lecture "1. Introduction to Mac OS X, Cocoa touch, Objective-C and Tools" the students are instructed to drag an "Object" into interface builder and set the class actions and outlets. I do not seem to have this ability in my interface builder. Was it removed or disabled in more recent versions? ...

Reading PDF files as string through iPhone application

I am facing some problem in iPhone application development for "Reading PDF". I have tried following code. I know I have used wrong methods for parsing - parsing methods are just used for searching purpose. But I want to convert entire pdf text in to a string. Say for example Apple's MobileHIG.pdf - I have used in this code. @implementa...

upload image in flickr from iphone

uploading image into flickr , flickr API provided NSInputStream *imageStream = [NSInputStream inputStreamWithData:imageData]; [request uploadImageStream:imageStream suggestedFilename:@"Foobar.jpg" MIMEType:@"image/jpeg" arguments:[NSDictionary dictionaryWithObjectsAndKeys:@"0", @"is_public", nil]]; but its not working. is ...

is there is any notification after update or changes in contact Address Book in iphone?

is there is any notification after update or changes in contact Address Book in iphone ...

How do I put coordinates from an object into a CLLocation? (Objective-C, iPhone)

Hello, I'm currently using the ARKit ported by the http://iphonear.org guys, looping through a fetched xml and plotting coordinates on the screen. However for some reason casting the object values: for(NSObject *locxml in xmlLocations) { tempLocation = [[CLLocation alloc] initWithLatitude: (int)[locxml valueF...

iPhone Code Signing

I can build my project on one computer but not on another. I have imported my certificate, the distribution certificate and my private key. The provisioning profiles have also been installed. The provisioning profile matches my certificate when checking under "Edit Project Settings". The provisioning profile does apparently not match the...

Add a UIView after a UITableView but before a UITabBar?

I'm trying to add a UIView, in particular a UIImageVIew, after (that is, below, but not in a z-index sense) a UITableView but before (that is, above) a UITabBar. You know, the typical "banner/adv space" that you can see everywhere. My main problem btw is that i don't know exactly where to put it, as a subview of wich view specifically;...

Pixel color replacement working fine on simulator but not on iPhone

Hi, I am dealing with an iphone application which would choose a specific colored pixel from the image and replace it with some other color shades i choose from color menu. Problem is that the code i have implemented is working fine on simulator, but when i run the same code on device all i get is that, the image's pixels are replaced b...

TableViewCells width in iPhone

Hi. I'm trying to create a cell on a tableview which doesn't go "all the way" from left-to-right of the screen. Basically, what I need is a cell which (as usual) starts on the left side of the screen, but with a given width, creating a free space on the right. Is there any way of doing it? I wasn't able to find any example. Sorry for...

HOWTO remove device tokens received by Apple APNS feedback

Hi Guys, I am successfully fetching Apple APNS feedback data via PHP. The structure that I am getting (after some processing) looks something like this: timestamp device token My question is how to know which of the device tokens should I remove from my database and stop sending notifications to them. Regardz, Mladjo ...

Orientation issues with Tab Bar Controller In WebView

Hi I am new to iphone development. In my app, i am using number of viewControllers, web view, Tool bar, Tab Bar and so on. Here, i want to achieve orientation(portrait or landscape or vice versa) corresponding device view in all the web views. I could achieve orientation in all web views except those web views are coming under the tab b...

How to build a static C++ library using Xcode ?

Hello guys, I am trying to create a static library in Xcode using C++ ( All my files are .h or .cpp ). I tried deleting main.cpp and then adding a target to my project to build a "Static" library. Since I'm not using Cocoa, I assumed that I needed to add a BSD Static Library, but I have tried other static library options with no apparen...

Move object from one Core Data UITableView to another?

I'm trying to move an object from a fetchedresultscontroller to another. The code looks like this: UISegmentedControl *segmentedControl = self.navigationItem.titleView; NSManagedObject *managedObject = [fetchedResultsController objectAtIndexPath:indexPath]; NSDate *timeValue = [[managedObject valueForKey:@"timeStamp"] copy]; NSManagedO...

How to access my mac or pc from my iPhone

Hi all, I have to access mac or windows pc from my iPhone. Can any one tell which frameworks or which concepts i have to use to get this. Thank you ...

Monotouch ad-hoc distro

hey I've managed to get it to do what i think is an adhoc build and inside the bin folder there's an appName.app folder is that folder the distro? if it is - how can i put it onto a web server for people to install and test for me? is this possible? w:// ...

Using Localizable.strings in iPhone application

I downloaded the three20 library: http://three20.info/ And I opened the TTCatalog sample project that comes with this library: http://img16.imageshack.us/img16/3183/screenshot20100302at752.png As you can see, there are lots of Localizable.strings files. When I opened the iPhone simulator and changed its language to for example Frenc...

Fetch remote plist file, use in a UITableView

Hello, I have successfully created an app that reads from a bundled .plist file and displays the contents in a UITableView. I would like to move that plist to an external site, as it is updated frequently. even better, I would love to have it generated with PHP. I have got the server side working, but the Objective C is giving me a head...