mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
28 lines
632 B
Objective-C
28 lines
632 B
Objective-C
//
|
|
// 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
|