iphone Programming Glossary: couple
how to get the message when receiving the “kCTMessageReceivedNotification” notification on IOS5 http://stackoverflow.com/questions/10681995/how-to-get-the-message-when-receiving-the-kctmessagereceivednotification-notif CKMadridService.h for iMessage messages. I did quickly attempt to swizzle my own method in for a couple methods in CKSMSService void _receivedMessage id arg1 replace BOOL arg2 replacedRecordIdentifier int..
How to check for an active Internet Connection on iPhone SDK? http://stackoverflow.com/questions/1083701/how-to-check-for-an-active-internet-connection-on-iphone-sdk here 3 Add @class Reachability to the .h file of where you are implementing the code 4 Create a couple instances to check in the interface section of the .h file Reachability internetReachable Reachability..
UIImagePickerController and extracting EXIF data from existing photos http://stackoverflow.com/questions/1238838/uiimagepickercontroller-and-extracting-exif-data-from-existing-photos that UIImagePickerController doesn't return the metadata of the photo after selection. However a couple of apps in the app store Mobile Fotos PixelPipe seem to be able to read the original files and the EXIF..
How to access SOAP services from iPhone http://stackoverflow.com/questions/204465/how-to-access-soap-services-from-iphone from iPhone I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support..
How do I reset the scale/zoom of a web app on an orientation change on the iPhone? http://stackoverflow.com/questions/2557801/how-do-i-reset-the-scale-zoom-of-a-web-app-on-an-orientation-change-on-the-iphon scale zoom of a web app on an orientation change on the iPhone I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change and there.. change and there doesn't seem to be an obvious solution I've seen this question asked a couple of times on Stack Overflow and no one's yet been able to answer it. When I start the app in portrait..
Remove HTML Tags from an NSString on the iPhone http://stackoverflow.com/questions/277055/remove-html-tags-from-an-nsstring-on-the-iphone HTML Tags from an NSString on the iPhone There are a couple of different ways to remove HTML tags from an NSString in Cocoa. One way is to render the string into..
How do I apply a perspective transform to a UIView? http://stackoverflow.com/questions/347721/how-do-i-apply-a-perspective-transform-to-a-uiview of this with code can be found here where I've implemented touch based rotation and scaling on a couple of CALayers based on an example by Bill Dudney. The newest version of the program at the very bottom..
Build fat static library (device + simulator) using Xcode and SDK 4+ http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 a project embedded in another project although I highly recommend NOT doing that ever Apple has a couple of show stopper bugs in Xcode if you embed projects inside each other from Xcode 3.x through to Xcode..
Bold & Non-Bold Text In A Single UILabel? http://stackoverflow.com/questions/3586871/bold-non-bold-text-in-a-single-uilabel please look down the old answer. Now I am just being lazy so p _label setText text There is a couple of good introductory blog posts here from guys at invasivecode that explain with more examples uses..
HTML5 inline video on iPhone vs iPad/Browser http://stackoverflow.com/questions/3699552/html5-inline-video-on-iphone-vs-ipad-browser improve this question Right I was going nowhere with this and filed a bug with Apple. After a couple of weeks they got back to me saying very simply that I should add webkit playsinline to the video tag..
display image from URL retrieved from ALAsset in iPhone http://stackoverflow.com/questions/3837115/display-image-from-url-retrieved-from-alasset-in-iphone assetslibrary assetForURL asseturl resultBlock resultblock failureBlock failureblock A couple of things to note are that this uses blocks which were new to me before I started my iOS4 porting but..
iOS SDK - Programmatically generate a PDF file http://stackoverflow.com/questions/4362734/ios-sdk-programmatically-generate-a-pdf-file an iPhone project. iphone objective c ipad ios pdf generation share improve this question A couple things... First there is a bug with CoreGraphics PDF generation in iOS that results in corrupted PDFs...
Round two corners in UIView http://stackoverflow.com/questions/4847163/round-two-corners-in-uiview is a workaround but it's also fast. Both are based on CALayer masking. I've used both methods in a couple of projects last year then I hope you can find something useful. Solution 1 First of all I created this..
iPhone Facebook Video Upload http://stackoverflow.com/questions/5355846/iphone-facebook-video-upload Facebook Video Upload I've been working on this for a couple of days now and just can't seem to find a straight answer or example anywhere. I am trying to upload..
What are all the custom URL schemes supported by the Facebook iPhone app? http://stackoverflow.com/questions/5707722/what-are-all-the-custom-url-schemes-supported-by-the-facebook-iphone-app to see what information is available about the Facebook app on the iPhone So far I have found a couple sites containing limited information. And I was able to figure out the Facebook Profile Publish command...
What's the easiest way to resize/optimize an image size with the iPhone SDK? http://stackoverflow.com/questions/612131/whats-the-easiest-way-to-resize-optimize-an-image-size-with-the-iphone-sdk setting of a JPEG image iphone ios image cocoa touch resize share improve this question A couple of suggestions are provided as answers to this question . I had suggested the technique described in..
Re-sign IPA (iPhone) http://stackoverflow.com/questions/6896029/re-sign-ipa-iphone applications with hudson using xcodebuild followed by a xcrun without any problems I've received a couple of IPA files from different people that I would like to re sign with a enterprise account instead of..
To ARC or not to ARC? What are the pros and cons? http://stackoverflow.com/questions/8760431/to-arc-or-not-to-arc-what-are-the-pros-and-cons this. In conclusion switch to ARC as soon as you can and never look back. EDIT I've seen a couple of comments along the lines of using ARC is no substitute for knowing the Cocoa memory management rules...
iPhone app without AppStore http://stackoverflow.com/questions/982476/iphone-app-without-appstore engineers we sell to have iPhones we are considering moving to the much nicer newer platform. A couple of questions Is it possible to sell iPhone apps with out the app store Apple taking a 40 cut of a 99c..
how to get the message when receiving the “kCTMessageReceivedNotification” notification on IOS5 http://stackoverflow.com/questions/10681995/how-to-get-the-message-when-receiving-the-kctmessagereceivednotification-notif could help. Take a look at CKSMSService.h or CKMadridService.h for iMessage messages. I did quickly attempt to swizzle my own method in for a couple methods in CKSMSService void _receivedMessage id arg1 replace BOOL arg2 replacedRecordIdentifier int arg3 postInternalNotification BOOL arg4 void _receivedMessage..
How to check for an active Internet Connection on iPhone SDK? http://stackoverflow.com/questions/1083701/how-to-check-for-an-active-internet-connection-on-iphone-sdk and Reachability.m to the project you can get those here 3 Add @class Reachability to the .h file of where you are implementing the code 4 Create a couple instances to check in the interface section of the .h file Reachability internetReachable Reachability hostReachable 5 Add a method in the .h for when the network..
UIImagePickerController and extracting EXIF data from existing photos http://stackoverflow.com/questions/1238838/uiimagepickercontroller-and-extracting-exif-data-from-existing-photos extracting EXIF data from existing photos It's well known that UIImagePickerController doesn't return the metadata of the photo after selection. However a couple of apps in the app store Mobile Fotos PixelPipe seem to be able to read the original files and the EXIF data stored within them enabling the app to extract the..
How to access SOAP services from iPhone http://stackoverflow.com/questions/204465/how-to-access-soap-services-from-iphone to access SOAP services from iPhone I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support for accessing SOAP services a bit of Googling lead to the..
How do I reset the scale/zoom of a web app on an orientation change on the iPhone? http://stackoverflow.com/questions/2557801/how-do-i-reset-the-scale-zoom-of-a-web-app-on-an-orientation-change-on-the-iphon do I reset the scale zoom of a web app on an orientation change on the iPhone I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change and there doesn't seem to be an obvious solution I've seen this question.. had with getting the correct behavior in a web app on an orientation change and there doesn't seem to be an obvious solution I've seen this question asked a couple of times on Stack Overflow and no one's yet been able to answer it. When I start the app in portrait mode it works fine. Then I rotate into landscape and it's scaled..
Remove HTML Tags from an NSString on the iPhone http://stackoverflow.com/questions/277055/remove-html-tags-from-an-nsstring-on-the-iphone HTML Tags from an NSString on the iPhone There are a couple of different ways to remove HTML tags from an NSString in Cocoa. One way is to render the string into an NSAttributedString and then grab the rendered text. Another..
How do I apply a perspective transform to a UIView? http://stackoverflow.com/questions/347721/how-do-i-apply-a-perspective-transform-to-a-uiview transform from scratch for each rotation. A full example of this with code can be found here where I've implemented touch based rotation and scaling on a couple of CALayers based on an example by Bill Dudney. The newest version of the program at the very bottom of the page implements this kind of perspective operation...
Build fat static library (device + simulator) using Xcode and SDK 4+ http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 . RECENT CHANGES Info on how to use this script with a project embedded in another project although I highly recommend NOT doing that ever Apple has a couple of show stopper bugs in Xcode if you embed projects inside each other from Xcode 3.x through to Xcode 4.6.x Bonus script to let you auto include Bundles i.e. include..
Bold & Non-Bold Text In A Single UILabel? http://stackoverflow.com/questions/3586871/bold-non-bold-text-in-a-single-uilabel get similar results with a bit more of code. Interested people please look down the old answer. Now I am just being lazy so p _label setText text There is a couple of good introductory blog posts here from guys at invasivecode that explain with more examples uses of NSAttributedString look for Introduction to NSAttributedString..
HTML5 inline video on iPhone vs iPad/Browser http://stackoverflow.com/questions/3699552/html5-inline-video-on-iphone-vs-ipad-browser like on the ipad Cheers iphone ipad video html5 share improve this question Right I was going nowhere with this and filed a bug with Apple. After a couple of weeks they got back to me saying very simply that I should add webkit playsinline to the video tag on the HTML as well as adding the allowsInlineMediaPlayback..
display image from URL retrieved from ALAsset in iPhone http://stackoverflow.com/questions/3837115/display-image-from-url-retrieved-from-alasset-in-iphone ALAssetsLibrary assetslibrary ALAssetsLibrary alloc init autorelease assetslibrary assetForURL asseturl resultBlock resultblock failureBlock failureblock A couple of things to note are that this uses blocks which were new to me before I started my iOS4 porting but you might like to look at http www.mikeash.com pyblog friday..
iOS SDK - Programmatically generate a PDF file http://stackoverflow.com/questions/4362734/ios-sdk-programmatically-generate-a-pdf-file pdfContext EDIT Here's an example on GitHub using libHaru in an iPhone project. iphone objective c ipad ios pdf generation share improve this question A couple things... First there is a bug with CoreGraphics PDF generation in iOS that results in corrupted PDFs. I know this issue exists up to and including iOS 4.1 I haven't..
Round two corners in UIView http://stackoverflow.com/questions/4847163/round-two-corners-in-uiview do this. The first one is a bit more elegant the second one is a workaround but it's also fast. Both are based on CALayer masking. I've used both methods in a couple of projects last year then I hope you can find something useful. Solution 1 First of all I created this function to generate an image mask on the fly UIImage with..
iPhone Facebook Video Upload http://stackoverflow.com/questions/5355846/iphone-facebook-video-upload Facebook Video Upload I've been working on this for a couple of days now and just can't seem to find a straight answer or example anywhere. I am trying to upload a video to facebook from within my iPhone App. I can connect..
What are all the custom URL schemes supported by the Facebook iPhone app? http://stackoverflow.com/questions/5707722/what-are-all-the-custom-url-schemes-supported-by-the-facebook-iphone-app URL schemes supported by the Facebook iPhone app I am trying to see what information is available about the Facebook app on the iPhone So far I have found a couple sites containing limited information. And I was able to figure out the Facebook Profile Publish command. unfortunately it keeps the window open after you post...
What's the easiest way to resize/optimize an image size with the iPhone SDK? http://stackoverflow.com/questions/612131/whats-the-easiest-way-to-resize-optimize-an-image-size-with-the-iphone-sdk a picture with the iPhone SDK and how can I change the quality setting of a JPEG image iphone ios image cocoa touch resize share improve this question A couple of suggestions are provided as answers to this question . I had suggested the technique described in this post with the relevant code UIImage imageWithImage UIImage..
Re-sign IPA (iPhone) http://stackoverflow.com/questions/6896029/re-sign-ipa-iphone sign IPA iPhone I currently build all my applications with hudson using xcodebuild followed by a xcrun without any problems I've received a couple of IPA files from different people that I would like to re sign with a enterprise account instead of the corporate account for the app store or sometimes ad hoc..
To ARC or not to ARC? What are the pros and cons? http://stackoverflow.com/questions/8760431/to-arc-or-not-to-arc-what-are-the-pros-and-cons probably move non ARC code into a separate xcodeproj to simplify this. In conclusion switch to ARC as soon as you can and never look back. EDIT I've seen a couple of comments along the lines of using ARC is no substitute for knowing the Cocoa memory management rules. This is mostly true but it's important to understand why..
iPhone app without AppStore http://stackoverflow.com/questions/982476/iphone-app-without-appstore runs on a very expensive ruggedized PDA. Since most of the engineers we sell to have iPhones we are considering moving to the much nicer newer platform. A couple of questions Is it possible to sell iPhone apps with out the app store Apple taking a 40 cut of a 99c iFart app is one thing but this is a 3000 engineering calculation..
how to get the message when receiving the “kCTMessageReceivedNotification” notification on IOS5 http://stackoverflow.com/questions/10681995/how-to-get-the-message-when-receiving-the-kctmessagereceivednotification-notif at CKSMSService.h or CKMadridService.h for iMessage messages. I did quickly attempt to swizzle my own method in for a couple methods in CKSMSService void _receivedMessage id arg1 replace BOOL arg2 replacedRecordIdentifier int arg3 postInternalNotification..
How to check for an active Internet Connection on iPhone SDK? http://stackoverflow.com/questions/1083701/how-to-check-for-an-active-internet-connection-on-iphone-sdk you can get those here 3 Add @class Reachability to the .h file of where you are implementing the code 4 Create a couple instances to check in the interface section of the .h file Reachability internetReachable Reachability hostReachable 5 Add..
UIImagePickerController and extracting EXIF data from existing photos http://stackoverflow.com/questions/1238838/uiimagepickercontroller-and-extracting-exif-data-from-existing-photos It's well known that UIImagePickerController doesn't return the metadata of the photo after selection. However a couple of apps in the app store Mobile Fotos PixelPipe seem to be able to read the original files and the EXIF data stored within..
How to access SOAP services from iPhone http://stackoverflow.com/questions/204465/how-to-access-soap-services-from-iphone to access SOAP services from iPhone I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support for accessing SOAP..
How do I reset the scale/zoom of a web app on an orientation change on the iPhone? http://stackoverflow.com/questions/2557801/how-do-i-reset-the-scale-zoom-of-a-web-app-on-an-orientation-change-on-the-iphon do I reset the scale zoom of a web app on an orientation change on the iPhone I'm having the same problem that a couple of others have had with getting the correct behavior in a web app on an orientation change and there doesn't seem to be.. in a web app on an orientation change and there doesn't seem to be an obvious solution I've seen this question asked a couple of times on Stack Overflow and no one's yet been able to answer it. When I start the app in portrait mode it works fine...
Remove HTML Tags from an NSString on the iPhone http://stackoverflow.com/questions/277055/remove-html-tags-from-an-nsstring-on-the-iphone HTML Tags from an NSString on the iPhone There are a couple of different ways to remove HTML tags from an NSString in Cocoa. One way is to render the string into an NSAttributedString..
How do I apply a perspective transform to a UIView? http://stackoverflow.com/questions/347721/how-do-i-apply-a-perspective-transform-to-a-uiview A full example of this with code can be found here where I've implemented touch based rotation and scaling on a couple of CALayers based on an example by Bill Dudney. The newest version of the program at the very bottom of the page implements..
Build fat static library (device + simulator) using Xcode and SDK 4+ http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 use this script with a project embedded in another project although I highly recommend NOT doing that ever Apple has a couple of show stopper bugs in Xcode if you embed projects inside each other from Xcode 3.x through to Xcode 4.6.x Bonus script..
Bold & Non-Bold Text In A Single UILabel? http://stackoverflow.com/questions/3586871/bold-non-bold-text-in-a-single-uilabel code. Interested people please look down the old answer. Now I am just being lazy so p _label setText text There is a couple of good introductory blog posts here from guys at invasivecode that explain with more examples uses of NSAttributedString..
HTML5 inline video on iPhone vs iPad/Browser http://stackoverflow.com/questions/3699552/html5-inline-video-on-iphone-vs-ipad-browser video html5 share improve this question Right I was going nowhere with this and filed a bug with Apple. After a couple of weeks they got back to me saying very simply that I should add webkit playsinline to the video tag on the HTML as well..
display image from URL retrieved from ALAsset in iPhone http://stackoverflow.com/questions/3837115/display-image-from-url-retrieved-from-alasset-in-iphone alloc init autorelease assetslibrary assetForURL asseturl resultBlock resultblock failureBlock failureblock A couple of things to note are that this uses blocks which were new to me before I started my iOS4 porting but you might like to..
iOS SDK - Programmatically generate a PDF file http://stackoverflow.com/questions/4362734/ios-sdk-programmatically-generate-a-pdf-file using libHaru in an iPhone project. iphone objective c ipad ios pdf generation share improve this question A couple things... First there is a bug with CoreGraphics PDF generation in iOS that results in corrupted PDFs. I know this issue..
Round two corners in UIView http://stackoverflow.com/questions/4847163/round-two-corners-in-uiview the second one is a workaround but it's also fast. Both are based on CALayer masking. I've used both methods in a couple of projects last year then I hope you can find something useful. Solution 1 First of all I created this function to generate..
iPhone Facebook Video Upload http://stackoverflow.com/questions/5355846/iphone-facebook-video-upload Facebook Video Upload I've been working on this for a couple of days now and just can't seem to find a straight answer or example anywhere. I am trying to upload a video to facebook..
What are all the custom URL schemes supported by the Facebook iPhone app? http://stackoverflow.com/questions/5707722/what-are-all-the-custom-url-schemes-supported-by-the-facebook-iphone-app app I am trying to see what information is available about the Facebook app on the iPhone So far I have found a couple sites containing limited information. And I was able to figure out the Facebook Profile Publish command. unfortunately it..
What's the easiest way to resize/optimize an image size with the iPhone SDK? http://stackoverflow.com/questions/612131/whats-the-easiest-way-to-resize-optimize-an-image-size-with-the-iphone-sdk I change the quality setting of a JPEG image iphone ios image cocoa touch resize share improve this question A couple of suggestions are provided as answers to this question . I had suggested the technique described in this post with the..
Re-sign IPA (iPhone) http://stackoverflow.com/questions/6896029/re-sign-ipa-iphone build all my applications with hudson using xcodebuild followed by a xcrun without any problems I've received a couple of IPA files from different people that I would like to re sign with a enterprise account instead of the corporate account..
To ARC or not to ARC? What are the pros and cons? http://stackoverflow.com/questions/8760431/to-arc-or-not-to-arc-what-are-the-pros-and-cons xcodeproj to simplify this. In conclusion switch to ARC as soon as you can and never look back. EDIT I've seen a couple of comments along the lines of using ARC is no substitute for knowing the Cocoa memory management rules. This is mostly..
iPhone app without AppStore http://stackoverflow.com/questions/982476/iphone-app-without-appstore PDA. Since most of the engineers we sell to have iPhones we are considering moving to the much nicer newer platform. A couple of questions Is it possible to sell iPhone apps with out the app store Apple taking a 40 cut of a 99c iFart app is one thing..
|