Tech-Today
Mobile Development
 
iPhone / XCode Development
- Create an iphone application using xcode that dynamically creates sqlite tables
 
- My Todo List iphone application development using xcode
 
- iPhone Development Making the Slider control work
 
- Create an image slide show in iphone using xcode
 
- How to get IMEI from Android or iPhone
 
- How to make a static splash screen in iphone using xcode
 
- How to implement a UITableView
 
- How to create a simple UITabBar
 
- Create a simple UIScrollView
 
- Create a simple table view app
 
- How to check if a string contains another string
 
- How to read raw data from pipe-delimited text file
 
- Create A Simple AlertView
 
- How to differentiate between 3.5 and 4 inch iPhone
 
- Display Time Picker On Textfield Click
 
- How to detect first time app launch on iPhone
 
- Customize Table View Cells for UITableView
 
- iPhone touch event programming stanford's stalker project
 
- Familiarizing yourself with iPhone development Stanford Exercise WhatAToolB
 
- iPhone command line tool development, working with framework classes
 
- Jailbreak your iPhone 3GS
 
Swift
- Useful Article Links in Studying Swift
 
- How To Add a Slide-out Sidebar Menu in Your Apps
 
- Application's First Launch
 
- Using Background Image in Navigation Bar
 
- WebView Tutorial in iOS 8 With Swift
 
- How To Read Pipe Delimited Text File
 
- Create A Simple TableView App
 
- Develop a simple application that demonstrate the implementation of local notification
 
- Location Demo in iOS 8 With Swift
 
- How to handle CheckBox event in Swift
 
- Simple To-Do List using core data in Swift
 
- How to implement local notification in Swift
 
Android
- Using GridView layout in android
 
 
  
- 
Create A Simple Table View App In Xcode
Open Xcode and create a new Single View Application. For product name, use SimpleTableView and then fill out the Organization Name and Company Identifier with your customary values. Select iPhone for Devices.  Drag a table view inside the view controller.... 
  
- 
How To Get Imei From Android Or Iphone
For android it's pretty straight forward. You just have to add read phone state permission. <uses-permission android:name="android.permission.READ_PHONE_STATE"/> And call the API: String imei = TelephonyManager.getDefault().getDeviceId(); if (TextUtils.isEmpty(imei))... 
  
- 
Iphone Xcode - Create A Simple Uiscrollview
Finally getting acquainted with iPhone's xcode. Now I'll build a simple window base application to demo the UIScrollView features. 1.) Create a new window base application, named it MyScroll. It should create 2 files: a.) MyScrollAppDelegate.h... 
  
- 
Iphone Touch Event Programming Stanford's Stalker Project
Moving on with Stanford's set of exercise, here I am working on how to handle iPhone's touch events. I will replicate the Stalker class created by Paul? Steps: 1.) Create a new WIndow-based Application project, Stalker 2.) Create a new class TouchResponder... 
  
- 
Iphone Development Making The Slider Control Work
Lately I've been trying to learn iPhone development by following tutorials available online. But I often encountered problems building and running, even though I'm sure I've followed the tutorial perfectly. For example, I was following a simple... 
Tech-Today