-
Posts
1,096 -
Joined
-
Last visited
bus991's Achievements
Single Status Update
-
-
-
-
-
Tweak.xm
UIButton *openButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; //UIImage *btnImage = [UIImage imageNamed:@"/private/var/mobile/deadislandsurvivorshack/img.png"]; openButton.frame = CGRectMake((main.frame.size.width/2)-15, (main.frame.size.height/2)+5, 50, 50); openButton.backgroundColor = [UIColor blackColor]; [openButton setTitle:@"~ActivateCheats~" forState:UIControlStateNormal]; //[openButton setImage:btnImage forState:UIControlStateNormal]; openButton.tintColor = [UIColor whiteColor]; [openButton sizeToFit];
ModMenu.m
CGFloat width = mainView.frame.size.width; CGFloat height = mainView.frame.size.height; self = [super initWithFrame:CGRectMake(0, -10, 200, 250)]; self.alpha = 0; if(blur) self.backgroundColor = [UIColor clearColor]; else self.backgroundColor = [UIColor blackColor]; self.center = mainView.center; self.layer.cornerRadius = 15; self.layer.borderColor = theme.CGColor; self.layer.borderWidth = 2;
-