我正在嘗試創建類似http://www.iphone-tips-and-advice.com/image-files/skype-for-iphone-new-account.jpg和http://cdn.trickyways.com/wp-content/uploads/2009/08/login-facebook-on-iphone.png的登錄屏幕。我嘗試了很多方法,但無法實現它。我在tableview中遇到了靜態單元格的錯誤。我嘗試了quickdialog,但它已經筆尖文件我不知道如何在故事板中做同樣的事情。 任何幫助和指導將不勝感激。 在此先感謝。如何在故事板xcode中創建登錄屏幕
1
A
回答
1
我設法創建這樣的登錄屏幕使用分組的UITableView只有兩個單元格。 訣竅是將單元格定製爲單獨的類(Advised)或cellForRowAtIndexPath:方法。
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)_tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.backgroundColor = [UIColor clearColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.textLabel.alpha = 0.4;
}
if (indexPath.row == 0) {
[cell.contentView addSubview:textField];
}else if (indexPath.row == 1){
[cell.contentView addSubview:passWordField];
}
return cell;
}
其中textField和passwordfield都是UITextField實例。
+0
感謝Boz會檢查出來。 –
相關問題
- 1. 創建JSON登錄屏幕在iphone的故事板iphone 6
- 2. IOS Facebook登錄屏幕與故事板
- 3. 登錄後在故事板空白屏幕中執行Facebook SSO
- 4. 創建故事板Xcode 6
- 5. 如何創建登錄屏幕
- 6. 如何創建登錄屏幕?
- 7. 創建登錄屏幕
- 8. 如何爲iPhone創建登錄屏幕Xcode
- 9. 以模式爲基礎的故事板登錄屏幕示例
- 10. 登錄屏幕與故事板可能嗎?
- 11. 如何在登錄屏幕上創建登錄限制?
- 12. 何時爲新屏幕創建新的故事板vs View Controller?
- 13. 如何停止在xcode中創建故事板的過程?
- 14. 在Xcode中佈局登錄屏幕 - iOS
- 15. 在XCode中創建一個新的故事板並使其成爲主屏幕(模擬器中的黑屏)
- 16. 如何在iPhone中創建登錄屏幕(作爲UIAlertView)?
- 17. 如何在C#中創建自定義登錄Windows屏幕?
- 18. 如何編碼從xcode中的故事板創建的按鈕?
- 19. Xcode故事板
- 20. 另一個故事板是爲Xcode中的故事板本地化創建的
- 21. excel vba創建登錄屏幕
- 22. Xcode故事板顯示新的iPhone 5屏幕尺寸?
- 23. 本地化故事板啓動屏幕
- 24. 啓動屏幕故事板的iOS
- 25. XCode 6故事板 - 如何爲每個場景創建標題?
- 26. 在Xcode 4.3中創建沒有故事板的項目
- 27. 如何表示故事板中的啓動屏幕
- 28. 顯示一次性登錄屏幕w /故事板的最佳做法
- 29. 如何做登錄屏幕?
- 30. Xcode iPad故事板
試試這個,[SimpleLoginScreen](http://www.riccomini.name/Topics/Mobile/iPhone/SimpleLoginScreen/)的教程, 試試這個回購:[iOSLogin](https://github.com)/ijoshsmith/iOSLogin) – Bazinga
你好超人。我已經嘗試了這個項目,但是它沒有像Facebook/Skype這樣的故事板登錄。如果你知道這個問題,請給我多些鏈接。謝謝你的回覆。 –
我知道這是一箇舊線程,但考慮到它仍然在搜索結果中名列前茅,我以爲我會更新[SimpleLoginScreen](http://riccomini.name/posts/iphone/2008-12-06-simple -login-screen /)鏈接。 – Dave