菜鸟教程小白 发表于 2022-12-12 23:58:08

iphone - 如何在应用程序启动时创建一个默认 View 以呈现


                                            <p><p>我是 iOS 应用程序开发的新手。我正在制作一个应用程序,我想在 ScrollView 上显示自定义 View 并在 ScrollView 上添加 View ,但它显示的是第一个 View 的 View 。我可以先获得第二个 View 吗?</p>

<pre><code>scrollview=[initWithFrame:CGRectMake(0,80,320,360)];
;
;
;
];
scrollview .indicatorStyle = UIScrollViewIndicatorStyleDefault;
scrollview.showsHorizontalScrollIndicator = NO;
scrollview.showsVerticalScrollIndicator = NO;
scrollview.scrollsToTop = NO;
scrollview.delegate = self;
scrollview.tag=500;
;


afterloginPageControl=[initWithFrame:CGRectMake(0, 440, 320, 25)];
afterloginPageControl.numberOfPages = 8;
afterloginPageControl.backgroundColor = ;

afterloginPageControl.highlighted = YES;
afterloginPageControl.hidesForSinglePage = YES;
afterloginPageControl.currentPage = 0;
afterloginPageControl.selected = YES;
;
// create Pages..
//;
// add View
;


info=[initWithFrame:CGRectMake(0,80,315, 350)];
info.delegate=self;

info.backgroundColor=;

;


update=[initWithFrame:CGRectMake(320,80,320, 350)];
update .delegate=self;
update.backgroundColor=;
;


search=[initWithFrame:CGRectMake(640,80,320, 350)];
//info.delegate=self;
search.backgroundColor=;
;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 <code>viewDidLoad</code> 中在 ScrollView 上添加 View 后使用此代码。</p>

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何在应用程序启动时创建一个默认 View 以呈现,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13877982/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13877982/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何在应用程序启动时创建一个默认 View 以呈现