1) Control Center (Some things should be only a swipe away. And now they are.)
2) Notification Center (Today is all about you.)
3) Multitasking (While you multitask, it dose, too.)
4) Camera (All the right formats. Right at your fingertips.)
5) Photos (Life is full of special moments. So is your photo library.)
6) AirDrop (Drop everything.)
7) Safari (With things out of the way, there’s way more web.)
8) iTunes Radio (Hear where your music takes you.)
9) Siri (You’re going to like what you hear. And see.)
10) App Store (Find the right app for wherever you are.)
11) Find My iPhone (And if you can’t, at least there’s this.)
12) iOS in the Car (Best passenger ever.)
13) Mail
14) Weather
15) Messages
Posted in iOS 7, iOS Feature, Iphone & Ipad | Tagged iOS 7 Feature, iOS 7.0, iOS Feature, iPhone & iPad Application Development | Leave a Comment »
Posted in Iphone & Ipad | Tagged attributes in ios, ios, iphnoe/ipad application development, property in ios | Leave a Comment »
iPhone 4 iOS 5 not receiving MMS all the time:
Solution:
1)Go To Settings>General>Network>Cellular Data Network
and put this settings
My MMS Settings are:
APN: wap.voicestream.com
MMSC: 216.155.174.84/servlets/
MMS Proxy: 216.155.165.50:8080
MMS Max Message Size: 1048576
or
APN: wap.cingular
MMSC: mmsc.cingular.com
MMS Proxy: 066.209.011.32
MMS Max Message Size: 614400
Now in Settings>Messages you can get MMS Messaging ON over here.
Posted in iOS Feature, iOS Troubleshooting, Iphone & Ipad | Tagged iOS Troubleshooting | Leave a Comment »
About
Localization is the process of translating and adapting both the content (text and style) and the presentation (graphical and technical components) of an EXISTING product according to the language and cultural characteristics of the target audience or region for which it is intended.
Localization and Internationalization are complimentary activities, with one we can display cultural information like units, dates in the user’s preferred locale and the other, let’s us display text in the user’s preferred language.
The first step is to find out what languages your application is going to support and gather all the text (in different languages), images, videos, sounds and put them in a resource file or in a language directory. To translate text into different languages you can a tool that Google provides here http://translate.google.com/#en|es|
Preparing for Internationalization
In our sample app, we are going to support three languages English, Hindi and Gujarati. Create a new project in Xcode, does not matter what template you select.
After you have created your project, open the project location in Finder and create three directories called en.lproj,gu.lproj and hi.lproj. These three directories become the language project for your application. All the English language resources will stored in the folder en.lproj, the Gujarati language resources will be stored in gu.lproj, and the Hindi language resources will be stored in hi.lproj folder. The resource files that contain the localizable string are called “strings” file and their default name is “Localizable.strings”. So, we will create two new strings file in Xcode, select Resources and click on File -> New File -> Other (under Mac OS X) -> Strings file and click on Next, name your file “Localizable.strings” and save it in en.lproj directory. Repeat the same process by saving it in gu.lproj directory and hi.lproj directory. This is how the files look like in Xcode, since Xcode is smart enough to figure out that the file is localized for three different languages.
Posted in iOS Feature, Iphone & Ipad, Localization | Tagged iOS Application Development, iPad, iPhone, Localization | Leave a Comment »
For image cropping with UIBezierPath first you need to decide on close path so you put code for free draw. and using that all point you make one UIBezierPath. using that BezierPath we crop image and then we need to resize that image. and finally we get original cropped image. and then we clear image other part by set that cropped image as main image.
Image cropping contains three functionality
1. Free hand image selection for cropping.
2. Crop image according to selection.
3. Clear image cropping.
Posted in iOS Feature, Iphone & Ipad | Tagged Image Processing | 5 Comments »
1) Siri
2) Facebook integration
–> Public API for developers
3) Phone
–> Reply to incoming calls with message (preset or custom) or save reminder (timed)
4) Center
–> Do not disturb toggle with fine-grain phone call exceptions, schedules, or allowing repeat calls
5) FaceTime
–> Apple ID unified with phone number, enabling FaceTime or iMessage answering on iPad or Mac
6) Safari
–> iCloud Tabs for Safari on other iOS devices and Macs, Offline Reading List, Photo uploads, Smart app banners link to App Store or launches, Fullscreen video in landscape
7) Photo Streams
–> Shared Photo Streams with designated friends, includes comments
8) Mail
–> VIPs – designated contacts cause notifications, e-mails flagged with stars, separate inbox,
Flagged mailbox
9) Passbook
–> Barcode collection for boarding passes, store cards, coupon, movie tickets
10) Maps
–> Local search with 100 million business listings with Yelp reviews and pictures, Crowd-sourced traffic data with incident reports, Free turn-by-turn navigation with alternative route offers based on faster ETA, Navigation viewable from lock screen, Flyover (3D buildings)
11) Accessibility
–> iOS 6 comes with Guided Access.
12) Camera with Panoroma
–> Broaden your horizons.
Posted in iOS Feature, Iphone & Ipad | Leave a Comment »
Here i attach Code file.
1) TableCell.h
Code Link:- TableCell.h Sample Code
2) TableCell.m
Code Link:- TableCell.m Sample Code
In many Place in your iOS Development you use Custom Cell, Custom Table Cell and delegate method of TableView
here i make one sample for creating Custom cell with TextField, Lable, Button and also right Delegate method which we call from out Parent Class.
So i think this code is useful make Custom cell and handle all delegate method of your TableView.
Posted in Iphone & Ipad, UITableView | Tagged iPhone, iPad, XCode, TableView, TableCell, Application Development | Leave a Comment »