10 TIPs - To Become a Good Developer/Programmer
Why Join
Become a member
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
Training
Live
JOBS
MORE
CAREER
MEMBERS
Learn iOS Programming
FOLLOW
iOS is Apple's operating system for iPhone and iPad. Objective-C is the programming language for iOS development. Learn how to build iOS apps here.
Articles
(198)
Blogs
(62)
Resources
(10)
Videos
(3)
News
(171)
Forums
Ask a question
New
Top
Hot
Popular
Filter
Article
Blogs
Videos
News
Interview
Recent Post
Getting Started With Objective C - Working With Methods
This article explains how to create and implement methods in Objective C.
Anjali Joshi
Jan 17, 2022
2k
Getting Started With Objective C - Creating Class, Object And Accessors
This article is for the beginners who want to learn and develop iOS apps in Objective C. This article explains creating Class, Instance/Object and Accessors in Objective C.
Anjali Joshi
Dec 10, 2021
3.3k
What Makes iPhone 12 The Best
When you buy the new IPhone 12, you know that it’s a faster, sleeker model, with a better camera and improved battery life. But what makes these updates possible? This article expands upon each topic listed below.
Mae Mccreary
Nov 16, 2020
2.8k
What's New In iPhone 12
Apple iPhone 12 is the upcoming iPhone which is likely to be launched at a special event in September later this year.
Pravesh Dubey
Aug 27, 2020
3.5k
Generating Log Files For iOS Device
In this article, I will explain how to generate log files on iOS devices.
Anjali Joshi
Nov 21, 2019
8.3k
iPhone App Development Keypad Hide Issue
In this video you will learn about iPhone App Development Keypad Hide Issue.
Khawar Islam
Jun 08, 2016
5.9k
iOS App Development Table View Using Swift: Part 1
In this tutorial we will see that how we show the data in table view further more we will see that how me make the categories in tableview.
Khawar Islam
May 23, 2016
6k
How to insert values into an existing PDF on the fly?
Hi,
There is a PDF with some fields to accept values from the user(for example: a "bio data" form). My question is that how can I insert the user inputs to the Correct fields of the existing PDF and to generate the filled PDF?
if i using iTextSharp, then how can i choose the co ordinates to print values?
tnx in adv.
Abdul Basith
Dec 29, 2015
748
mvc tempdata
Hi,
can we use tempdata value in throughout controller like session?
Please explain me
Thanks in adv.
Chakri.
margam chakri
Dec 27, 2015
485
Does iOS support multitasking?
Vinay Arora
Nov 26, 2013
1.2k
1.2k
How to represent layer objects in iOS operating system ?
Vinay Arora
Nov 26, 2013
1.2k
1.2k
What are layer objects in iOS operating system?
Sudhir Goswami
Nov 25, 2013
1.1k
1.1k
Define view object in iOS operating system?
Sudhir Goswami
Nov 25, 2013
947
947
What is list down app's state transitions in iOS operating system?
Kunal Gautam
Nov 25, 2013
1.3k
1.3k
Aluminum Housing Causes iPhone 5 Supply Shortfall
Supply shortages of the iPhone 5 have been caused in part by tighter standards to produce the phone's aluminum casing.
Michael Tanenbaum
Oct 09, 2012
1.2k
Sources Say iPad Mini Will Launch in Q4
Sources say Apple's iPad mini is set for a Q4 launch that could come as early as this month
Michael Tanenbaum
Oct 02, 2012
1.3k
Apple, Verizon Correct Erroneous Data Usage Charges on iPhone 5
Verizon and Apple have patched an issue with incorrectly high data usage charged to iPhone 5 users.
Michael Tanenbaum
Oct 01, 2012
1.8k
60% of iPhones, 41% of iPads Now on iOS 6
Numbers show Apple's iOS 6 has a significantly faster adoption rate than iOS 5.
Michael Tanenbaum
Sep 28, 2012
1.2k
iPhone 5 isn’t selling as expected
iPhone 5 isn’t selling as well as expected
Mahesh Chand
Sep 24, 2012
2.7k
Datetime without Time
Hi everybody,
I have this:
[code]
var jan1 = (new DateTime(DateTime.Today.Year, 1, 1)).ToShortTimeString();
//beware different cultures, see other answers
var startOfFirstWeek = jan1.AddDays(1 - (int)(jan1.DayOfWeek));
var weeks =
Enumerable
.Range(0, 52)
.Select(i => new
{
weekStart = startOfFirstWeek.AddDays(i * 7)
})
.TakeWhile(x => x.weekStart.Year <= jan1.Year)//Week will nog begin by first of January
.Select(x => new
{
x.weekStart,
weekFinish = x.weekStart.AddDays(6)
})
.SkipWhile(x => x.weekFinish < jan1.AddDays(1))//Week will end by 31 of December
.Select((x, i) => new
{
x.weekStart,
x.weekFinish,
weekNum = i + 1
});
foreach (var week in weeks)
{
Console.WriteLine(week.ToString());
}
[/code]
But I only want to have the date without time.
THX
albert albert
May 16, 2012
1.2k
MonoDroid - Develop Droid Applications using C#
MonoDroid is a development platform to build Android-based applications using C# and .NET.
Mahesh Chand
May 24, 2011
12k
0
Can I run MonoTouch on Windows
ESCOZ has written steps required to build iPhone applications using MonoTouch on a Windows PC and Visual Studio 2008. Nice work ESCOZ.
Mahesh Chand
Feb 14, 2011
25.8k
0
Moving to iPhone and Android
Here we go. Finally I gave up and got a MacBook Pro today. There is no way one can build iPhone apps without a Mac. Did I tell you, I hate Apple?
Mahesh Chand
Feb 14, 2011
4.8k
0
What is MonoTouch
MonoTouch allows developers to create C# and .NET based applications that run on Apple's iPhone and Apple's iPod Touch devices, while taking advantage of the iPhone APIs and reusing both code and libraries that have been built for .NET, as well as existing skills.
Mahesh Chand
Feb 10, 2010
16.4k
0
Download MonoTouch
Discussion about MonoTouch download and versions.
Mahesh Chand
Feb 10, 2010
15.2k
0
It shouldn't be this tough. Finding records
OK, I need to find the index of a specific row in a dataset based on field value criteria, such as social security number. I've tried using a dataview and the Find() method, but that requires that you SORT on the column that your are searching on first. That's great, but it returns and index that does not match the index of the original DataTable that I am searching. This is not at all beneficial. I could use the DataTable.Rows.Find method as well, but that requires that one search on the Primary Key. This is no use to me. I simpky want to be able to search on a specific column and get the row index that it finds the value in. Am I REALLY goinf to have to loop through all the rows and check the column value??? That would be really disgusting.
Administrator
Feb 19, 2003
5.6k
what's going on with the forums?
We are working on fixing them at this stage.
Administrator
Feb 13, 2003
7.8k
Leaderboard
15.4k
Sachin Bhardwaj
152
15.4k
1.6m
344.6k
Mahesh Chand
1
344.6k
213.1m
0
Tahseen Jamil
0
0
TRENDING UP
Best Programming Language for iOS App Development
iPhone Operating System Architecture
Create Left/Right/Both Slider Menus In Your App With Objective C
Table View Delegate and Datasource Method in iPhone
User Guide To Enroll iOS Device With Microsoft Intune And Configuring Outlook App
Read and Write the Data To and From Document Directory of IPhone
Difference Between Storyboard and XIB in iOS7
Page View Controller in iPhone
Login Screen Using Storyboard in IPhone
Drop Down Menu in iPhone
Mastering SQL
Challenge yourself
Azure Developer Skill Challenge
E-Book Download
Get Certified
Python Developer
Ask a question
*
Select a Category
.NET
.NET Core
.NET Standard
Active Directory
ADO.NET
Agile Development
AJAX
Alexa Skills
Algorithms in C#
Android
Angular
Architecture
ArcObject
Artificial Intelligence
ASP.NET
ASP.NET Core
Augmented Reality
Aurelia
AWS
Azure
Backbonejs
Big Data
BizTalk Server
Blazor
Blockchain
Bootstrap
Bot Framework
Business
C#
C# Corner
C# Strings
C, C++, MFC
Career Advice
Careers and Jobs
Chapters
Cloud
COBOL.NET
Coding Best Practices
Cognitive Services
COM Interop
Compact Framework
Cortana Development
Cosmos DB
Cryptocurrency
Cryptography
Crystal Reports
CSS
Current Affairs
Custom Controls
Cyber Security
Data Mining
Data Science
Databases & DBA
Design Patterns & Practices
DevOps
DirectX
Dynamics CRM
Enterprise Development
Entity Framework
Error Zone
Exception Handling
Expression Studio
F#
Files, Directory, IO
Flutter
Games Programming
GDI+
GO
Google Cloud
Google Development
Graphics Design
Graphite Studio
Hardware
Health & Wellness
Hiring and Recruitment
HoloLens
How do I
HTML 5
Internet & Web
Internet of Things
Ionic
Java
Java and .NET
JavaScript
JQuery
JSON
JSP
Knockout
Kotlin
Leadership
Learn .NET
Learn iOS Programming
LightSwitch
LINQ
Machine Learning
Metaverse
Microsoft 365
Microsoft Office
Microsoft Phone
Microsoft Teams
Mobile Development
MongoDB
MySQL
NetBeans
Networking
NFT
NoCode LowCode
Node.js
Office Development
OOP/OOD
Open Source
Operating Systems
Oracle
Outsourcing
Philosophy
PHP
PostgreSQL
Power Apps
Power Automate
Power BI
Printing in C#
Products
Progressive Web Apps
Project Management
Public Speaking
Python
Q#
QlikView
Quantum Computing
R
React
React Native
Reports using C#
Robotics & Hardware
RPA
Ruby on Rails
Salesforce
Security
Servers
SharePoint
SignalR
Smart Devices
Software Testing
Solidity
SQL
SQL Server
Startups
Stratis Blockchain
Swift
Threading
Tools
TypeScript
Unity
UWP
Visual Basic .NET
Visual Studio
Vue.js
WCF
Wearables
Web Design
Web Development
Web Services
Web3
Windows
Windows Controls
Windows Forms
Windows PowerShell
Windows Services
Workflow Foundation
WPF
Xamarin
XAML
XML
XNA
XSharp
Upload Source Code:
Select only zip and rar file.