Created
June 17, 2015 07:49
-
-
Save lazybios/5a45c700aed1112daa61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
// Do any additional setup after loading the view, typically from a nib | |
UIImageView *dot =[[UIImageView alloc] initWithFrame:CGRectMake(50,50,20,20)]; | |
dot.image=[UIImage imageNamed:@"draw.png"]; | |
[self.view addSubview:dot]; | |
} |
Author
lazybios
commented
Jun 17, 2015
//导航
self.navigationControl.navigationBarHidden=NO;
IBOutlet UIButton *btn1;
IBOutlet UIButton *btn2;
write the above 2 lines in your .h file and set the outlets with XIB.
Now create a method called hideButton
-(IBAction)hideButton
{
btn1.hidden = YES;
}
in XIB attach this method with btn2. So now when you click on btn2 it will hide btn1.
UIView *uv=[[UIView alloc]initWithFrame:CGRectMake(100, 100, 500, 500)];
[uv setBackgroundColor:[UIColor blueColor]];
UIColor colorWithRed:66.0f/255.0f
green:79.0f/255.0f
blue:91.0f/255.0f
alpha:1.0f];
[backToList setTitleColor:UIColorFromRGB(0x2ecc71) forState:UIControlStateNormal];
UIScrollView *scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 435)];
scroll.contentSize = CGSizeMake(320, 700);
scroll.showsHorizontalScrollIndicator = YES;
NSArray *itemArray = [NSArray arrayWithObjects: @"One", @"Two", @"Three", nil];
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:itemArray];
segmentedControl.frame = CGRectMake(35, 200, 250, 50);
segmentedControl.segmentedControlStyle = UISegmentedControlStylePlain;
[segmentedControl addTarget:self action:@selector(MySegmentControlAction:) forControlEvents: UIControlEventValueChanged];
segmentedControl.selectedSegmentIndex = 1;
[scroll addSubview:segmentedControl];
[segmentedControl release];
[self.view addSubview:scroll];
Then add your method in your class.
- (void)MySegmentControlAction:(UISegmentedControl *)segment
{
if(segment.selectedSegmentIndex == 0)
{
// code for the first button
}
}
http://stackoverflow.com/questions/15587978/uisegmentedcontrol-inside-title-of-uinavigationbar-looks-unformatted
http://stackoverflow.com/questions/18900034/use-ios-6-style-segmented-control-in-ios-7
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
// now you can use cell.textLabel.text
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment