Results 2 issues of ye4ever

hi , ## when i try share image ``` Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/*"); share.putExtra(Intent.EXTRA_STREAM, Uri.parse(URL)); startActivity(Intent.createChooser(share, "Share Image")); ``` --- I want to position the image in the...

How I can set the Options? ``` UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(30, 140, 150, 400)]; label.text = @"option1\n\noption2\n\noption3"; [label setTextColor:[UIColor whiteColor]]; [label setNumberOfLines:0]; [_slideMenu addSubview:label] ```