Advertise Books Events Forum News Social Networking Support Us

sdkIQ for iPhone
($4.99)

Shape Up
($0.99)

Your First iPhone App
($1.99)

iVidCam Free
(free)

Kid Art
($0.99)

iPUBQUIZ
(£1.19)

ArtStudio
($3.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum

View Single Post
Old 12-26-2008, 07:51 AM   #7 (permalink)
Forsworn
Twitter: fabiankr
 
Forsworn's Avatar
 
Join Date: Oct 2008
Location: Germany
Posts: 503
Default

I subclassed UITextField and want to share this...
Make sure that you import the AudioToolBox framework!
And copy the sound file to your project.
The textField has to be of the type "NumberPad". Otherwise it will look weird.
This will also work with multiple textFields.

FKTextField.h:
Code:
#import 


@interface FKTextField : UITextField {
}

-(void)addDot;

@end
FKTextField.m:
Code:
#import "FKTextField.h"
#import 


@implementation FKTextField

- (void)becomeFirstResponder {
	[super becomeFirstResponder];
	[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(resignFirstResponder) name:UITextFieldTextDidEndEditingNotification object:self];
	//The UIWindow that contains the keyboard view
	UIWindow* tempWindow;
	
	//Because we cant get access to the UIKeyboard throught the SDK we will just use UIView. 
	//UIKeyboard is a subclass of UIView anyways
	UIView* keyboard;
	
	//Check each window in our application
	for(int c = 0; c < [[[UIApplication sharedApplication] windows] count]; c ++)
	{
		//Get a reference of the current window
		tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:c];
		
		//Get a reference of the current view 
		for(int i = 0; i < [tempWindow.subviews count]; i++)
		{
			keyboard = [tempWindow.subviews objectAtIndex:i];
			
			if([[keyboard description] hasPrefix:@"
It's not that much but I hope it will help someone.

edit:
Something is messed up with the second code block.
Quote me or download the files.
Attached Files
File Type: zip click_off.wav.zip (437 Bytes, 176 views)
File Type: zip FKTextField.zip (13.5 KB, 294 views)

Last edited by Forsworn; 12-26-2008 at 07:56 AM.
Forsworn is offline   Reply With Quote
 
Enter the iPhone App Challenge!  Win $500!
» Advertisements
» Stats
Members: 24,208
Threads: 38,991
Posts: 171,023
Top Poster: smasher (2,569)
Welcome to our newest member, JDBurgie
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 04:08 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.