This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,27 @@
//
// RBBirthdayPicker.h
// RobloxMobile
//
// Created by Kyler Mulherin on 7/15/15.
// Copyright (c) 2015 ROBLOX. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RBBirthdayPicker : UIView <UIPickerViewDelegate, UIPickerViewDataSource>
@property (nonatomic, getter=getBirthday, readonly) NSString* playerBirthday;
@property (nonatomic, getter=getWasBornToday, readonly) BOOL wasBornToday;
-(BOOL) isValid;
-(BOOL) userUnder13;
-(void) setValidationBlock:(void(^)())callback;
-(void) markAsValid;
-(void) markAsNormal;
-(void) markAsInvalid;
- (BOOL)becomeFirstResponder;
- (BOOL)resignFirstResponder;
@end