Gone are the days where Xcode generated the manifest for you when you archive for enterprise distribution. So it is more or less a manual process now and below is a sample manifest. Just Create a .plist file (can use Xcode for this) using the following keys and values appropriately. <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>assets</key> <array> <dict> <key>kind</key> ...
Follow the 7 easy steps below to select text in Safari using voice over. 1. Listen to voice over reading the text you want to select (navigate the website the usual way). Voice over might read more than what you actually want. You'll be ok as long as the text you want to select is included. 2. Use the rotor ...
Anybody who have used a UITextView in Objective C will know the select all option. For those who didn't understand, I'm talking about the select all option you get when you tap on a UITextView. Today I'm going to show you how to change its behaviour. First things first :) Did you know that you can programmatically select a range ...
Few things, 1. Drop copy is transparent 2. It is fixed to the desktop (F11 will not hide it) 3. It accepts drag and drop 4. Cool animation Making your window transparent You can make your window transparent by using a subclass of NSWindow and including the code below. - (id) initWithContentRect: (NSRect) contentRect styleMask: (unsigned int) aStyle backing: (NSBackingStoreType) ...
The sample code below shows how you could customise a NSView to accept drag and drop of files. The code will give you the file path(s) of the dropped file(s). Steps 1. Create a subclass of NSView by using the code blow 2. Add a NSView using interface builder to your app window 3. Change the NSView's class to your ...
Recently I tried to stream TNL online and ended up listening to a loop. After digging into the problem I realized that the windows media player embedded in the website I used to stream is not supported in my mac (MacBook Pro, MAC OS X 10.6.4). I had Microsoft silverlite product, Fip4Mac installed too. I guess no online streaming in ...
A facebook post can be your status update or the link that you shared or even a photo album. Unless you are super popular you must have noticed that some get the attention of many and some don't. There could be two reasons why you didn't get your friends' attention. The most straight forward reason would be that they were ...
Past few days my PC gave me a hell of a time. Sometimes after the chkdisk finishes some of my files (windows and other software) are missing. Therefore I had to reinstall them and sometimes the whole OS itself. Later I noticed that on some boot ups my PS2 mouse also does not get detected. I switched to linux as ...
Actually this was an experience from my previous work place. I was in the marketing team back then and I was in charge of SEO and selling company’s products in Amazon. Above all marketers was her, our manager. She was a very busy person with a very tight schedule even though you’ll see her smoking around 5-6 times a day, ...
It saves time Can get to know several view points of the same idea Google search is logical Let me take you back to the days you first heard about fire. You probably came to know that in olden days man made fire by rubbing two stones or sticks together. As the human evolved ...
Some replies are sweet Some are short Some leaves us hope Some disappointment Some join hearts Some splits them Hearts are not be broken But treasured From some we learn Experience that would be The broken pieces we collect Will be, the building blocks Of your future ...
I'm a great fan of Matt Cutts. Well I should be, since I belong to the SEO industry. Matt Cutts recently organized a SEO site review session. I saw the video and thought of summarizing the topics discussed for the benefit of the majority. I also have the video if you have an hour to spare. In this session Matt ...
Image 01 This is an inbuilt feature of the Xcode server, therefore additional configuration is not required. Once you have successfully setup the server, open the server dashboard (image 01) and click on the bot. Then use the 'product' button in the pop up (image 02) to download the ipa. Image 02
Lately, I was trying out pre-request scripts on Postman. We all know as the script gets larger and larger it would be handy to have place to print out the values as you debug. This is how you could achieve that on postman. 1. Open Postman and go to View -> Show postman console. 2. That's it!!!