Sha256: 7d28414d45c7d08cd934b4f830b4829a747f5ac887f23334aa22f997c712876e
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
// // MyLauncherScrollView.m // @rigoneri // // Copyright 2010 Rodrigo Neri // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #import "MyLauncherScrollView.h" @implementation MyLauncherScrollView - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event { [super touchesBegan:touches withEvent:event]; [[self nextResponder] touchesBegan:touches withEvent:event]; } - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent *)event { [super touchesMoved:touches withEvent:event]; [[self nextResponder] touchesMoved:touches withEvent:event]; } - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent *)event { [super touchesEnded:touches withEvent:event]; [[self nextResponder] touchesEnded:touches withEvent:event]; } @end
Version data entries
2 entries across 2 versions & 1 rubygems