- Registriert
- 11.05.12
- Beiträge
- 7
Hallo zusammen,
ich komme leider grade nicht weiter.
Folgendes Problem:
Ich bin dabei ein kleines App für unsere Firma zu erstellen. Dadrin benötige ich mehrere ScrollView Seiten.
Ich erstelle einen Neuen View Controller - lege darauf das Scroll View Element.
Erstelle ein neues Outlet auf dem Viewcontroller.h
Dann erstelle ich eine leere xib Datei und lege dort ein View Feld in der Größe, die ich brauche an. Dadrauf kommen dann die Texte Bilder etc.
In die ViewController.m kommt dann noch folgender Code
Irgendwie funktioniert das jetzt nicht mehr... grummel...
Im Moment scheitere ich daran ein Outlet von dem SrollView in der ViewController.h zu erstellen.
Der nimmt das einfach nicht an.
Freue mich über einen Tipp
Schonmal Danke.
Freundliche Grüße
Daniel Stetzenbach
ich komme leider grade nicht weiter.
Folgendes Problem:
Ich bin dabei ein kleines App für unsere Firma zu erstellen. Dadrin benötige ich mehrere ScrollView Seiten.
Ich erstelle einen Neuen View Controller - lege darauf das Scroll View Element.
Erstelle ein neues Outlet auf dem Viewcontroller.h
Code:
[COLOR=#E50000][COLOR=#814726]
#import [/COLOR][/COLOR][COLOR=#E50000]<UIKit/UIKit.h>[/COLOR][COLOR=#222222]
[/COLOR]
[COLOR=#222222][COLOR=#CD00A3]@interface[/COLOR] ViewController : [COLOR=#7925AC]UIViewController[/COLOR][/COLOR]
[COLOR=#222222]
[/COLOR]
[COLOR=#CD00A3]@property[COLOR=#000000] ([/COLOR]weak[COLOR=#000000], [/COLOR]nonatomic[COLOR=#000000]) [/COLOR]IBOutlet[COLOR=#000000] [/COLOR][COLOR=#7925AC]UIScrollView[/COLOR][COLOR=#000000] *Ambulant;[/COLOR][/COLOR]
[COLOR=#222222]
[/COLOR]
[COLOR=#CD00A3]@end[/COLOR]
Dann erstelle ich eine leere xib Datei und lege dort ein View Feld in der Größe, die ich brauche an. Dadrauf kommen dann die Texte Bilder etc.
In die ViewController.m kommt dann noch folgender Code
Code:
[COLOR=#222222][COLOR=#CD00A3]@implementation[/COLOR] ViewController[/COLOR]
[COLOR=#CD00A3]@synthesize[COLOR=#000000] Ambulant;[/COLOR][/COLOR]
[COLOR=#222222]
[/COLOR]
[COLOR=#222222]- ([COLOR=#CD00A3]void[/COLOR])viewDidLoad[/COLOR]
[COLOR=#222222]{[/COLOR]
[COLOR=#430083][COLOR=#000000] [[/COLOR][COLOR=#CD00A3]super[/COLOR][COLOR=#000000] [/COLOR]viewDidLoad[COLOR=#000000]];[/COLOR][/COLOR]
[COLOR=#008B00][COLOR=#000000] [/COLOR]// Do any additional setup after loading the view, typically from a nib.[/COLOR]
[COLOR=#430083][COLOR=#000000] [/COLOR][COLOR=#7925AC]NSArray[/COLOR][COLOR=#000000] *xibContents = [[[/COLOR][COLOR=#7925AC]NSBundle[/COLOR][COLOR=#000000] [/COLOR]mainBundle[COLOR=#000000]] [/COLOR]loadNibNamed[COLOR=#000000]:[/COLOR][COLOR=#E50000]@"MmB_Ambulant"[/COLOR][COLOR=#000000] [/COLOR]owner[COLOR=#000000]:[/COLOR][COLOR=#CD00A3]self[/COLOR][COLOR=#000000] [/COLOR]options[COLOR=#000000]:[/COLOR][COLOR=#CD00A3]nil[/COLOR][COLOR=#000000]];[/COLOR][/COLOR]
[COLOR=#222222] [COLOR=#7925AC]UIView[/COLOR] *view = [xibContents [COLOR=#430083]lastObject[/COLOR]];[/COLOR]
[COLOR=#222222] [[/COLOR][COLOR=#3a8288]Ambulant[/COLOR] [COLOR=#430083]addSubview[/COLOR]:view];
[COLOR=#000000] [/COLOR][COLOR=#3a8288]Ambulant[/COLOR][COLOR=#000000].[/COLOR][COLOR=#7925ac]contentSize[/COLOR][COLOR=#000000] = view.[/COLOR][COLOR=#7925ac]frame[/COLOR][COLOR=#000000].[/COLOR][COLOR=#7925ac]size[/COLOR][COLOR=#000000];[/COLOR]
[COLOR=#222222]}[/COLOR]
[COLOR=#222222]
[/COLOR]
[COLOR=#222222]- ([COLOR=#CD00A3]void[/COLOR])viewDidUnload[/COLOR]
[COLOR=#222222]{[/COLOR]
[COLOR=#222222] [[COLOR=#CD00A3]self[/COLOR] [COLOR=#205A5E]setTest[/COLOR]:[COLOR=#CD00A3]nil[/COLOR]];[/COLOR]
[COLOR=#430083][COLOR=#000000] [[/COLOR][COLOR=#CD00A3]super[/COLOR][COLOR=#000000] [/COLOR]viewDidUnload[COLOR=#000000]];[/COLOR][/COLOR]
[COLOR=#008B00][COLOR=#000000] [/COLOR]// Release any retained subviews of the main view.[/COLOR]
[COLOR=#222222]}[/COLOR]
Irgendwie funktioniert das jetzt nicht mehr... grummel...
Im Moment scheitere ich daran ein Outlet von dem SrollView in der ViewController.h zu erstellen.
Der nimmt das einfach nicht an.
Freue mich über einen Tipp
Schonmal Danke.
Freundliche Grüße
Daniel Stetzenbach