第一步:申請證書:
第三步:申請provisioning profile,生成.mobileprovision,雙擊該證書才能正確匯入手機裝置,不能拖。
第四步:建立應用,使其名字一致。
第五步:寫**
// return yes;
uiremotenotificationtype types =
(uiremotenotificationtypebadge
|uiremotenotificationtypesound
|uiremotenotificationtypealert);
//註冊訊息推送
return yes;
//獲取devicetoken成功
didregisterforremotenotificationswithdevicetoken:(nsdata *)devicetoken
nslog(@"devicetoken: ",devicetoken);
//這裡進行的操作,是將device token傳送到服務端
uialertview * alert = [[uialertview alloc]initwithtitle:nil message:[nsstring stringwithformat:@"devicetoken:%@",devicetoken] delegate:self cancelbuttontitle:nil otherbuttontitles:@"確定", nil];
[alert show];
//註冊訊息推送失敗
didfailtoregisterforremotenotificationswitherror:(nserror *)error
nslog(@"register remote notifications error:",error);
// nslog(@"register remote notifications error:",error.localizeddescription);
//處理收到的訊息推送
didreceiveremotenotification:(nsdictionary *)userinfo
nslog(@"receive remote notification : %@",userinfo);
uialertview *alert =
message:@"推送成功!"
delegate:nil
cancelbuttontitle:@"確定"
otherbuttontitles:nil];
[alert show];
獲取節點方法二
通過層次關係獲取節點 節點之間都存在著層次關係 1,父節點是唯一的節點 parentnode 2.子節點 是可以有多個 childnodes 3,兄弟節點 上乙個兄弟節點 是唯一的節點 previoussibling 下乙個兄弟節點 是唯一的節點 nextsibling 節點型別 1,標籤型節點.型...
第二 獲取Access Token
access token兩小時就會消失每天呼叫有上限,這裡我們放在定時任務裡面每隔乙個半小時呼叫一次獲取access token更新至資料庫 public class wechatutil第二步 獲取access token 呼叫自己封裝的httprequestutil工具類 獲取網頁授權憑證 公眾...
二 python 獲取路徑
1 獲取本地 檔案全路徑 import os ab path os.path.abspath file 2 獲取此檔案所在的目錄 不包括 執行程式的 檔案名字,而到其上層目錄 import os ab path os.path.abspath file father dir os.path.dirn...