-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have 3 views in my app. Main view has 2 buttons and when selected it displays 2nd view(which again has buttons and displays a 3rd view with images). I have a home button on second view. When pressed I want to show the main view. I can do this if I add the 2nd view as subview
[self.view addSubview:secondViewController…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I've managed to read some values into a table view and display them in the Master View of a SplitViewController.
What I would like to do is to tap on a row of the Master View and display the details on the detailViewController but in a TableView.
When I tap on the row in the MasterView table…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
This is a weird issue. I have created a view controller with a nib file for my modal view. On that view there is a label, number and text view. When I create the view from the source view, I tried to set the label, but it shows that the label is null (0x0). Kinda weird... Any suggestions? Now…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have a few (view) classes.
Table, Tree, PagingColumn, SelectionColumn, SparkLineColumn, TimeColumn.
currently they're flat under app/view like this:
app/view/Table
app/view/Tree
app/view/PagingColumn
...
I thought about restructuring it, because the Trees and Tables use the columns, but there…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Im trying to change height of Layouts through the code without success.
I've tried all of the examples i saw here and other site and my app just keep shutting down.
xml code:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_lay"
android:orientation="vertical"
tools:context="…
>>> More