現(xiàn)在是學(xué)習(xí)和開發(fā)IOS APP的最好時(shí)機(jī),因?yàn)槿碌腎OS及SWIFT語(yǔ)言,讓開發(fā)事半功倍。下面方維網(wǎng)絡(luò)(m.oulysa.com)分享平時(shí)APP開發(fā)常見問題及操作方法。
UITableView顯示加載狀態(tài)
//顯示加載狀態(tài)
func setupInfiniteScrollingView() {
self.is_loading = true
print("加載中")
self.activityViewIndicator = UIActivityIndicatorView(activityIndicatorStyle:UIActivityIndicatorViewStyle.Gray)
self.activityViewIndicator.frame = CGRect(x: 0,y: 0,width: 80,height: 80)
self.activityViewIndicator.center = self.view.center
self.activityViewIndicator.color = UIColor.darkGrayColor()
self.activityViewIndicator.startAnimating()
self.view.addSubview(activityViewIndicator)
}
//加載結(jié)束
if self.activityViewIndicator.isAnimating() {
self.activityViewIndicator.stopAnimating()
self.is_loading = false
print("加載完成")
}
狀態(tài)欄顯示聯(lián)網(wǎng)狀態(tài)
let app = UIApplication.sharedApplication()
app.networkActivityIndicatorVisible = true //顯示
app.networkActivityIndicatorVisible = false //不顯示
設(shè)置消息推送
一、Home ICO圖標(biāo)右上角提示消息個(gè)數(shù)
let app = UIApplication.sharedApplication()
if (UIDevice.currentDevice().systemVersion as NSString).floatValue >= 8.0 {
let settings = UIUserNotificationSettings(forTypes: .Badge, categories: nil)
app.registerUserNotificationSettings(settings)
}
app.applicationIconBadgeNumber = 123
二、設(shè)置消息推送
let app = UIApplication.sharedApplication()
if (UIDevice.currentDevice().systemVersion as NSString).floatValue >= 8.0 {
let settings = UIUserNotificationSettings(forTypes:[.Badge,.Sound,.Alert], categories: nil)
app.registerUserNotificationSettings(settings)
} else {
app.registerForRemoteNotifications() //IOS8以下注冊(cè)消息-老的
}
UIVIEW 視圖屬性
Mode
Tag :UIView 所有子類,包括視圖和控件,都可以起一個(gè) tag 數(shù)字編號(hào),程序中可以通過該編號(hào),找到這個(gè)組件
User Interaction Enabled
Multiple Touch
Alpha
Opaque
Hidden
Clear Graphics Context
Clip Subviews : 如果有子視圖,沒有完全包含在父視圖內(nèi),選中后,只在父視圖中的部分會(huì)顯示,默認(rèn)禁用;
Autoresize Subviews允許iOS 調(diào)整子視圖大小,默認(rèn)選中;
Stretching
拉伸)可以忽略,只有當(dāng)屏幕上調(diào)整矩形視圖大小且需要重新繪制時(shí),才需要拉伸。這里需要設(shè)置 4 個(gè)浮點(diǎn)值(0.0-1.0),如果希望每條邊 10%是不可以拉伸,那么 x y 都指定為 0.1 ,width、height都設(shè)為 0.8。默認(rèn) x y都是 0.0 ,width height 為 1.0
如沒特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來自http://m.oulysa.com/news/2863.html