Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 01-12-2012, 02:53 PM   #1 (permalink)
Registered Member
 
Join Date: Dec 2011
Posts: 16
dunkelheit is on a distinguished road
Default Tableview hidden

Good, I know how to hide a tableview after a comparison, try this but it did not.

Code:
self.tablaCyRs.hidden = YES;

Code complete.

viewController.h

Code:
@interface CyRsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
   
    IBOutlet UITableView *tablaCyRs;
    .
   .
}

viewController.m


Code:
#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];
  
    if(!error){
        
    } else{
            self.tablaCyRs.hidden = YES; // this line       
    }
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Metodos del TablaView

/*TODO: Numero de Secciones de la tabla.*/
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

/*TODO: Numero de Filas por tabla.*/
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [cyrs count];
}

/*TODO: Titulo de cabecera de cada seccion.*/
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    return @"";
}



/*TODO: Creacion de las secciones de la tabla.*/
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
	
    //inicialiacion de la Tabla
    static NSString *CellIdentifier = @"Cell";
	UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    
    //verifica si la celda esta inicializada
    if (cell == nil) {
        //Inicializa Celda
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier] autorelease];
        //Cambia de color a las separaciones de la tabla
 
        
            
    }else{
       // etc
    }
    
    
    
    if(indexPath.row == 0){
       //etc
        
    }else{
     // etc

    }
    
    return cell;
}
how could I do to see the tableview not even able to put a alertview. thanks
dunkelheit is offline   Reply With Quote
Old 01-12-2012, 05:36 PM   #2 (permalink)
Just helping out.
 
Domele's Avatar
 
Join Date: Feb 2011
Posts: 2,565
Domele is on a distinguished road
Default

Are you sure your IBOutlet is connected?
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.

New app - See screenshots and details at www.globaclock.com.

If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.
Domele is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 378
11 members and 367 guests
7twenty7, Atatator, glenn_sayers, guusleijsten, iphonedevshani, j.b.rajesh@gmail.com, QuantumDoja, sacha1996, Sami Gh, tim0504, VinceYuan
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,674
Threads: 94,122
Posts: 402,907
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Atatator
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:41 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0