googlevr / gvr-ios-sdk

Google VR SDK for iOS
http://developers.google.com/vr/ios/
Other
647 stars 191 forks source link

Remove (i) icon form GVRVideoView #104

Closed Abhishek-Shukla1989 closed 8 years ago

Abhishek-Shukla1989 commented 8 years ago

Hello All,

Please let me know how I can remove Tip icon (i icon) from GVRVideoView. Is there any way or property to disable it in order to go in production? What is your plan regarding UI customisation of GVRVideoView ?

Thanks

nathanmartz commented 8 years ago

This question has been asked and answered several times here already. Just do a quick search.

Abhishek-Shukla1989 commented 8 years ago

Can we change destination link of tip icon only? I didn't find any answer related to this query.

Thanks

dinhnhat0401 commented 8 years ago

@Abhishek-Shukla1989 https://github.com/googlevr/gvr-ios-sdk/issues/9

tejpratap0 commented 7 years ago

GVRVideoView *videoView = [[GVRVideoView alloc] initWithFrame:CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height)];

for (UIView *view in videoView.subviews) { if ([view isKindOfClass:[UIButton class]] ) { if ([NSStringFromClass([view class]) isEqualToString:@"QTMButton"] ) { [view removeFromSuperview]; } } }