Showing posts with label iPad. Show all posts
Showing posts with label iPad. Show all posts

Tuesday, July 10, 2012

Running on iPhone or iPad ?

Developing a universal app makes it a necessity to find out if the app is running on iPhone or iPad, accordingly you write your code block.
Here is the code:


if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
                
}
                
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
                
}

Monday, August 29, 2011

MIM Chart Library version Alpha 1.0 Released !


Finally, its uploaded on GitHub.
You can find all related sample code, sample visuals and documentation HERE 

Monday, June 27, 2011

How To Activate Split Keyboard on iPad

You need iOS 5 for this.To activate Split Keyboard on iPad, find and long press the keyboard icon at the bottom right of the keyboard.This will give you 2 options: undock and split. With undock you can set the keyboard higher or lower on the screen. With split, you can split the keyboard.



Tuesday, June 21, 2011

Opensource View Transition Library - Update

LINK to the previous effects.

Here are screenshots of the 3 more new effects added.

Door with Teeth Closing In
Elliptical-Ease Out
Elliptical Reveal Ease In



LINK TO REPOSITORY

Opensource View Transition Library.

Effects as shown below have been included in this library. There many more effects I am working on. I will keep releasing as I finish.









LINK TO THE REPOSITORY

Monday, June 20, 2011

Horizontal flip in CGontextRef.

If you want to do the mirror image of the CGContext, then you want to do the horizontal flip. Use following 2 lines of code:


CGAffineTransform transform = CGAffineTransformMake(-1.0, 0.0, 0.0, 1.0, widthOfScreen, 0.0);
CGContextConcatCTM(context,transform);



For vertical flip, follow this article: LINK

New transition Effects for Slideshow.- Part 4

Effect 1
Effect 2
Effect 3


Here is latest transition effect screenshots.
 

New transition Effects for Slideshow.- Part 3

Links to previous effects:

Effect 1
Effect 2



Here are the screenshots of the Effect 3


 




  



Sunday, June 19, 2011

New Transition Effects for Slideshow.- Part 2

Here is a link to article which talks about effect 1.
Screenshots as usual of the progression of the slideshow in play.






New Transition Effects for Slideshow.

For everything there is some inspiration, I was looking at those cool transition effects available on .ppt in Microsoft Powerpoint  software , so I thought may be I should write some of my own transitions effects which can be easily applied for creating a cool effect in slideshow on an app.
Here are some screenshots of the first transition effect I have written.





Wednesday, June 15, 2011

Status of Rich Text Editing on iPad


Well.  I was just goofing around on web when I found there is no native API on iOS which lets you create rich text editor while its available for mac SDK.
I looked around a lot whether there are any  libraries budding up . There is one called OMNI group rich text library, they have done a good job. They are developing more features in it.
There are people countable on finger who have actually talked about this on their blog. One blog is really recommendable. They have have been able to create the multi colored text along with the pointer. LINK TO ARTICLE.
There is a new app launched recently called  Essay which is a rich text editor for iOS, but sadly there aren't very great reviews about it either. I haven't used it myself to I have to depend on the opinion of the reviewers.And also its not open source so its of no help to other developers. LINK TO ARTICLE.

And So I decided to take a plunge myself and see what good I can come up with.
Check out THIS POST of mine. I have been able to do some work on it.

Tuesday, June 14, 2011

How to create Pencil tool OR Pen Tool in iPhone/iPad?

There have been  requests  to write about Pencil Tool, Pen Tool.
I guess THIS POST will help.

Wednesday, June 8, 2011

New Split keyboard for iPad in Landscape Orientation!!

Split keyboard displayed in WWDC 2011 for iPad , its convenient for people who type with thumb.