iphone

CCSprite Aniamtion problem: Loop movement- [enter from left exit through right] do this actions forever

Here is my code, i have been trying- -(void) animatedMove:(CCSprite *)character { ccTime actualDuration = 10; id actionMove = [CCMoveBy actionWithDuration:actualDuration position:ccp(screen_width+50, character.position.y)]; id actionBack = [CCMoveBy actionWithDuration:1 ...

...

    How to display a Star bullet point on iTunes Connect app description

    Hi, How does one display a 'star shaped' bullet point on the iTunes Connect app description page Thanks ...

    How to implement next page action as built in maps apps in iphone from apple

    Hi Guys, In iPhone, Map application, Right corner button, that is next page animation button, Can we impletement this button action, Is it animation? Can you explain more in details. Thank you, Madan Avulagadda. ...

    Associating a marker (dot) with calendar control

    Hi, My Application requires the calendar control and i had downloaded the custom calendar control from the below given link. http://blog.webscale.co.in/?p=244 Now the thing we want to do is put a dot in the tile for the dates which has some data associated with it. How can I implement it using the above calendar? Please Give Your Sug...

    How to implement movement and placing of UITableViewCells in iphone??

    Hi, I am developing an application in which I need to achieve movement and placement of UITableViewCells by dragging them to the desired positions(just like as we do for icons by long pressing them and placing them to the desired place). How to achieve it for the table view cells? Code for this is appreciable. ...

    how to set custom color of table row

    how to set custom color of table row when it is clicked... i mean i don't want that blue color which appear by Default.... ...

    UISegmentedControl gives different background then single UIBarButtonItem

    Hi, In my Ipad app i started with a single UIBarButtonItem at the right: That + picture is just white. self.switchView.navigationItem.rightBarButtonItem = nil; UIBarButtonItem *rightButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"add.png"] style:UIBarButtonItemStylePlain target:self action:@selector(insertKnoopPr...

    When does NSURLConnection's initWithRequest return nil

    Does anyone know in which situations initializing a NSURLConnection returns nil instead of the created connection. The documentation says it's possible but fails to specify when this happens. The method/message in question: [[NSURLConnection alloc] initWithRequest:request delegate:self]; - According to the NSURLConnection Class Refer...

    EasyAPNS and devicetoken

    Hi! I'm trying to use APNS on my server (win2003) I've read all details on easyapns.com but I've these problems: for test service I've to add my device in apns_devices table but I don't know the device_token value to use?? I've found device_id but not token!! about this http://www.easyapns.com/cron-job I'm using PHP on IIS I've tri...

    iPhone: cant Enable In App Purchases for specific Application ID

    Hi all! Sence 3 days im trin to add in app purchases to my app. I did everything like in diferent tutorials found on this forum, BUT ONE single step, I cant find frickin check-box "Enable in app purchases" not on App Id config not in any other places. In App-ID config page i have ONLY "Enable for Apple Push Notification service" check-b...

    UIViewContentModeScaleAspectFit iphone sdk gives poor quality image

    Hopefully a quick one? I am creating a custom uitableviewcell and have added an imageview. I have some PNG images which are around 200x200 in size. I want to create a thumbnail to put in the tableview, but when I resize the image, it results in a poor quality image. I use UIViewContentModeScaleAspectFit to resize it to a 50x50 frame. ...

    initWithArray seems to give a reference to source array rather then a new array

    Hi guys, In my code I use initWithArray like so : vendorArray = [[NSMutableArray alloc] initWithArray:resultsCore.availableVendors]; But changes I make to the vendorArray also seem to be made to restultsCore.availableVendors. This was not what I had desired. I want populate vendorArray with restultsCore.availableVendors but then le...

    Press a button behind a UIView

    I have a button and half of the button is covered by a UIView (for styling). I was wondering if there was any way to make this UIView "touch transparent" as it were, so if you press on it it lets you select the image behind it? Or will I just have to make it a button itself? Thanks Tom ...

    How to detect an incoming call and start my app?

    Hi All, I want to develop an iPhone callerID application. I have following challenges to develop How to detect incoming call? Need to start my app when an incoming call occurs Please help me out..I am new to iPhone development. Thanks, Srikanth ...

    Unique items from a NSMutableArray with NSDictionary items?

    If you have an NSMutableArray with three NSDictionarys like this: { name:steve, age:40; name:steve, age:23; name:paul, age:19 } How do I turn that into an array with just two strings { steve, paul }. In other words, the unique names from the original NSMutableArray? Is there a way to do this using blocks? ...

    How to make an email attachment with both text and images in iPhone applications?

    I am developing an application which needs to send an email with attachment, I want to create that attachment as PDF file from Text(NSString) and images(NSData) to a single NSData object and preparing PDF file and preparing mail with PDF file as attachment. but if I send mail and open that attachment in system that PDF file is not openin...

    Why does my openAL source stop playing sometimes?

    I am using the ObjectAL library to play 50 odd buffers through 32 sources. I use the ObjectAL sourcepool to give me available sources. What I find is that sometimes I get a source back that does not play. I believe I am resetting everything on the source and associating a new buffer. What I have noticed is that after a call to alSourc...

    create a close "X" button for a UIView

    How to add the button on the boundary of the UIView frame? I want to have a close button at the top left corner of the view,just like the Maxim app for IPad. ...

    warning in uitableview

    Hi, I complied using iOS 4.1 for uitableview program. What has to be done ? WARNING: Using legacy cell layout due to delegate implementation of tableView:accessoryTypeForRowWithIndexPath: in . Please remove your implementation of this method and set the cell properties accessoryType and/or editingAccessoryType to move...