我有以下的UISearchBar代碼用戶停止型:上述代碼寫入我的日誌後檢測暫停時的UISearchBar
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
NSTimer *myTimer;
NSLog(@"Timer=%@",myTimer);
if (myTimer)
{
if ([myTimer isValid])
{
[myTimer invalidate];
}
myTimer=nil;
}
myTimer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(OnTextChange) userInfo:nil repeats:NO];
}
顯示Timer=null
,
OnTextChange
是方法,其從地址獲取數據。
在此先感謝!